home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / prog_gen / inter49c.zip / INTERRUP.I < prev    next >
Text File  |  1996-02-11  |  342KB  |  9,378 lines

  1. Interrupt List, part 9 of 14
  2. Copyright (c) 1989,1990,1991,1992,1993,1994,1995,1996 Ralf Brown
  3. --------m-2F4300-----------------------------
  4. INT 2F - EXTENDED MEMORY SPECIFICATION (XMS) v2+ - INSTALLATION CHECK
  5.     AX = 4300h
  6. Return: AL = 80h XMS driver installed
  7.     AL <> 80h no driver
  8. Notes:    XMS gives access to extended memory and noncontiguous/nonEMS memory
  9.       above 640K
  10.     this installation check DOES NOT follow the format used by other
  11.       software
  12. SeeAlso: AX=4310h
  13. Index:    installation check;XMS version 2+
  14. --------m-2F4308-----------------------------
  15. INT 2F U - HIMEM.SYS v2.77+ - GET A20 HANDLER NUMBER
  16.     AX = 4308h
  17. Return: AL = 43h if supported
  18.         BL = A20 handler number (value of /MACHINE:nn switch)
  19.         BH = AT A20 switch time (00h medium, 01h fast, 02h slow)
  20. Note:    if the A20 handler number returned in BL is 00h, an external handler
  21.       is being used (see AX=4330h)
  22. SeeAlso: AX=4309h,AX=4330h
  23. --------m-2F4309-----------------------------
  24. INT 2F U - HIMEM.SYS v3.09+ - GET XMS HANDLE TABLE
  25.     AX = 4309h
  26. Return: AL = 43h if function supported
  27.         ES:BX -> XMS handle table (see #1936)
  28. Note:    HIMEM.SYS v3.09 is part of MS-DOS 6.0.
  29. SeeAlso: AX=4308h
  30.  
  31. Format of XMS handle table:
  32. Offset    Size    Description    (Table 1936)
  33.  00h    BYTE    ??? (01h in HIMEM.SYS v3.09)
  34.  01h    BYTE    size of one handle descriptor
  35.  02h    WORD    number of handles (default = 20h)
  36.  04h    DWORD    pointer to XMS handle array (see #1937)
  37. SeeAlso: #1966
  38.  
  39. Format of XMS handle descriptor [array]:
  40. Offset    Size    Description    (Table 1937)
  41.  00h    BYTE    flag
  42.         01h=free, 02h=used, 04h=in pool but not associated with any EMB
  43.  01h    BYTE    lock count (00h=unlocked)
  44.  02h    DWORD    address of XMS block in KB (shift left by 10 for abs. address)
  45.  06h    DWORD    size of XMS block in KB
  46. --------m-2F4310-----------------------------
  47. INT 2F - EXTENDED MEMORY SPECIFICATION (XMS) v2+ - GET DRIVER ADDRESS
  48.     AX = 4310h
  49. Return: ES:BX -> driver entry point (see #1938,#1939,#1942,#1949,#1958,#1963)
  50. Notes:    HIMEM.SYS v2.77 chains to previous handler if AH is not 00h or 10h
  51.     HIMEM.SYS requires at least 256 bytes free stack space when calling
  52.       the driver entry point
  53. SeeAlso: AX=4300h,AX=4310h"Cloaking",AX=4310h"Netroom",AX=4310h"XMZ"
  54.  
  55. Format of XMS driver entry point:
  56. Offset    Size    Description    (Table 1938)
  57.  00h  5 BYTEs    jump to actual handler
  58.         either short jump (EBh XXh) followed by three NOPs or
  59.           far jump (EAh XXXX:XXXX) to a program which has hooked itself
  60.           into the XMS driver chain
  61. Note:    to hook into the XMS driver chain, a program should follow the chain of
  62.       far jumps until it reaches the short jump of the driver at the end
  63.       of the chain; this short jump is to be replaced with a far jump to
  64.       the new handler's entry point, which should contain a short jump
  65.       followed by three NOPs.  The new handler must return to the address
  66.       pointed at by the short jump which was overwritten.  Using this
  67.       method, the new handler becomes the first to see every XMS request.
  68.  
  69. (Table 1939)
  70. Call the XMS driver "Get XMS version number" function with:
  71.     AH = 00h
  72. Return: AX = XMS version (in BCD, AH=major, AL=minor)
  73.     BX = internal revision number (in BCD for HIMEM.SYS)
  74.     DX = High Memory Area (HMA) state
  75.         0001h HMA (1M to 1M + 64K) exists
  76.         0000h HMA does not exist
  77. SeeAlso: #1940,#1941,#1946,#1947,#1953
  78.  
  79. (Table 1940)
  80. Call the XMS driver "Request High Memory Area" function with:
  81.     AH = 01h
  82.     DX = memory in bytes (for TSR or device drivers)
  83.         FFFFh if application program
  84. Return: AX = status
  85.         0001h success
  86.         0000h failure
  87.         BL = error code (80h,81h,90h,91h,92h) (see #1964)
  88. Note:    HIMEM.SYS will fail function 01h with error code 91h if AL=40h and
  89.       DX=KB free extended memory returned by last call of function 08h
  90. SeeAlso: #1941,#1973
  91.  
  92. (Table 1941)
  93. Call the XMS driver "Release High Memory Area" function with:
  94.     AH = 02h
  95. Return: AX = status
  96.         0001h success
  97.         0000h failure
  98.         BL = error code (80h,81h,90h,93h) (see #1964)
  99. SeeAlso: #1940
  100.  
  101. (Table 1942)
  102. Call the XMS driver "Global enable A20, for using the HMA" function with:
  103.     AH = 03h
  104. Return: AX = status
  105.         0001h success
  106.         0000h failure
  107.         BL = error code (80h,81h,82h) (see #1964)
  108. SeeAlso: #1943,#1944
  109.  
  110. (Table 1943)
  111. Call the XMS driver "Global disable A20" function with:
  112.     AH = 04h
  113. Return: AX = status
  114.         0001h success
  115.         0000h failure
  116.         BL = error code (80h,81h,82h,94h) (see #1964)
  117. SeeAlso: #1942,#1945
  118.  
  119. (Table 1944)
  120. Call the XMS driver "Local enable A20" function with:
  121.     AH = 05h
  122. Return: AX = status
  123.         0001h success
  124.         0000h failure
  125.         BL = error code (80h,81h,82h) (see #1964)
  126. Note:    this function is used for direct access to extended memory
  127. SeeAlso: #1942,#1945
  128.  
  129. (Table 1945)
  130. Call the XMS driver "Local disable A20" function with:
  131.     AH = 06h
  132. Return: AX = status
  133.         0001h success
  134.         0000h failure
  135.         BL = error code (80h,81h,82h,94h) (see #1964)
  136. SeeAlso: #1943,#1944
  137.  
  138. (Table 1946)
  139. Call the XMS driver "Query A20 state" function with:
  140.     AH = 07h
  141. Return: AX = status
  142.         0001h enabled
  143.         0000h disabled
  144.         BL = error code (00h,80h,81h) (see #1964)
  145. SeeAlso: #1939,#1947
  146.  
  147. (Table 1947)
  148. Call the XMS driver "Query free extended memory" function with:
  149.     AH = 08h
  150.     BL = 00h (some implementations leave BL unchanged on success)
  151. Return: AX = size of largest extended memory block in KB
  152.     DX = total extended memory in KB
  153.     BL = error code (00h,80h,81h,A0h) (see #1964)
  154. Note:    this function does not include the HMA in the returned memory sizes
  155. SeeAlso: #1939,#1946,#1948,#1960
  156.  
  157. (Table 1948)
  158. Call the XMS driver "Allocate extended memory block" function with:
  159.     AH = 09h
  160.     DX = Kbytes needed
  161. Return: AX = status
  162.         0001h success
  163.         DX = handle for memory block
  164.         0000h failure
  165.         BL = error code (80h,81h,A0h) (see #1964)
  166. SeeAlso: #1947,#1950,#1953,#1954,#1955,#1961
  167.  
  168. (Table 1949)
  169. Call the XMS driver "Free extended memory block" function with:
  170.     AH = 0Ah
  171.     DX = handle of block to free
  172. Return: AX = status
  173.         0001h success
  174.         0000h failure
  175.         BL = error code (80h,81h,A2h,ABh) (see #1964)
  176. SeeAlso: #1948,#1961
  177.  
  178. (Table 1950)
  179. Call the XMS driver "Move extended memory block" function with:
  180.     AH = 0Bh
  181.     DS:SI -> EMM structure (see #1965)
  182. Return: AX = status
  183.         0001h success
  184.         0000h failure
  185.         BL = error code (80h-82h,A3h-A9h) (see #1964)
  186. Note:    if either handle in the EMM structure is 0000h, the corresponding
  187.       offset is considered to be an absolute segment:offset address in
  188.       directly addressable memory
  189. SeeAlso: #1948,#1951
  190.  
  191. (Table 1951)
  192. Call the XMS driver "Lock extended memory block" function with:
  193.     AH = 0Ch
  194.     DX = handle of block to lock
  195. Return: AX = status
  196.         0001h success
  197.         DX:BX = 32-bit physical address of locked block
  198.         0000h failure
  199.         BL = error code (80h,81h,A2h,ACh,ADh) (see #1964)
  200. Note:    MS Windows 3.x rejects this function for handles allocated after
  201.       Windows started
  202. SeeAlso: #1948,#1950,#1952
  203.  
  204. (Table 1952)
  205. Call the XMS driver "Unlock extended memory block" function with:
  206.     AH = 0Dh
  207.     DX = handle of block to unlock
  208. Return: AX = status
  209.         0001h success
  210.         0000h failure
  211.         BL = error code (80h,81h,A2h,AAh) (see #1964)
  212. SeeAlso: #1951
  213.  
  214. (Table 1953)
  215. Call the XMS driver "Get handle information" function with:
  216.     AH = 0Eh
  217.     DX = handle for which to get info
  218. Return: AX = status
  219.         0001h success
  220.         BH = block's lock count
  221.         BL = number of free handles left
  222.         DX = block size in KB
  223.         0000h failure
  224.         BL = error code (80h,81h,A2h) (see #1964)
  225. BUG:    MS Windows 3.10 acts as though unallocated handles are in use
  226. Note:    MS Windows 3.00 has problems with this call
  227. SeeAlso: #1939,#1948,#1962
  228.  
  229. (Table 1954)
  230. Call the XMS driver "Reallocate extended memory block" function with:
  231.     AH = 0Fh
  232.     DX = handle of block
  233.     BX = new size of block in KB
  234. Return: AX = status
  235.         0001h success
  236.         0000h failure
  237.         BL = error code (80h,81h,A0h-A2h,ABh) (see #1964)
  238. SeeAlso: #1948,#1957
  239.  
  240. (Table 1955)
  241. Call the XMS driver "Request upper memory block" function with:
  242.     AH = 10h
  243.     DX = size of block in paragraphs
  244. Return: AX = status
  245.         0001h success
  246.         BX = segment address of UMB
  247.         DX = actual size of block
  248.         0000h failure
  249.         BL = error code (80h,B0h,B1h) (see #1964)
  250.         DX = largest available block
  251. Notes:    Upper Memory consists of non-EMS memory between 640K and 1024K
  252.     the XMS driver need not implement functions 10h through 12h to be
  253.       considered compliant with the standard
  254.     under DOS 5+, if CONFIG.SYS contains the line DOS=UMB, then no upper
  255.       memory blocks will be available for allocation because all blocks
  256.       have been grabbed by MS-DOS while booting
  257. SeeAlso: #1948,#1956,#1974,INT 21/AH=58h"UMB"
  258.  
  259. (Table 1956)
  260. Call the XMS driver "Release upper memory block" function with:
  261.     AH = 11h
  262.     DX = segment address of UMB to release
  263. Return: AX = status
  264.         0001h success
  265.         0000h failure
  266.         BL = error code (80h,B2h) (see #1964)
  267. Note:    the XMS driver need not implement functions 10h through 12h to be
  268.       considered compliant with the standard
  269. SeeAlso: #1949,#1955,#1957
  270.  
  271. (Table 1957)
  272. Call the XMS v3.0+ driver "Reallocate upper memory block" function with:
  273.     AH = 12h
  274.     DX = segment address of UMB to resize
  275.     BX = new size of block in paragraphs
  276. Return: AX = status
  277.         0001h success
  278.         0000h failure
  279.         BL = error code (80h,B0h,B2h) (see #1964)
  280.         DX = maximum available size (RM386)
  281. Note:    the XMS driver need not implement functions 10h through 12h to be
  282.       considered compliant with the standard
  283. SeeAlso: #1954,#1955,#1956,#1972
  284.  
  285. (Table 1958)
  286. Call the QEMM v5.11 "???" function with:
  287.     AH = 34h  (QEMM 5.11 only, undocumented)
  288.     ???
  289. Return: ???
  290. SeeAlso: #1959
  291.  
  292. (Table 1959)
  293. Call the QEMM v5.11 "???" function with:
  294.     AH = 44h  (QEMM 5.11 only, undocumented)
  295.     ???
  296. Return: ???
  297. SeeAlso: #1958,#1972
  298.  
  299. (Table 1960)
  300. Call the XMS v3.0 driver "Query free extended memory" function with:
  301.     AH = 88h
  302. Return: EAX = largest block of extended memory, in KB
  303.     BL = status (00h,80h,81h,A0h) (see #1964)
  304.     ECX = physical address of highest byte of memory
  305.         (valid even on error codes 81h and A0h)
  306.     EDX = total Kbytes of extended memory (0 if status A0h)
  307. BUG:    HIMEM v3.03-3.07 crash on an 80286 machine if any of the 8Xh functions
  308.       are called
  309. SeeAlso: #1947,#1961
  310.  
  311. (Table 1961)
  312. Call the XMS v3.0 driver "Allocate any extended memory" function with:
  313.     AH = 89h
  314.     EDX = Kbytes needed
  315. Return: AX = status
  316.         0001h success
  317.         DX = handle for allocated block (free with AH=0Ah) (see #1949)
  318.         0000h failure
  319.         BL = status (80h,81h,A0h,A1h,A2h) (see #1964)
  320. SeeAlso: #1948,#1960
  321.  
  322. (Table 1962)
  323. Call the XMS v3.0 driver "Get extended EMB handle information" function with:
  324.     AH = 8Eh
  325.     DX = handle
  326. Return: AX = status
  327.         0001h success
  328.         BH = block's lock count
  329.         CX = number of free handles left
  330.         EDX = block size in KB
  331.         0000h failure
  332.         BL = status (80h,81h,A2h) (see #1964)
  333. BUG:    MS-DOS 6.0 HIMEM.SYS leaves CX unchanged
  334. SeeAlso: #1953,#1961,#1963
  335.  
  336. (Table 1963)
  337. Call the XMS v3.0 driver "Reallocate any extended memory block" function with:
  338.     AH = 8Fh
  339.     DX = unlocked memory block handle
  340.     EBX = new size in KB
  341. Return: AX = status
  342.         0001h success
  343.         0000h failure
  344.         BL = status (80h,81h,A0h-A2h,ABh) (see #1964)
  345. BUG:    HIMEM v3.03-3.07 crash on an 80286 machine if any of the 8Xh functions
  346.       are called
  347. SeeAlso: #1954,#1962
  348.  
  349. (Table 1964)
  350. Values for XMS error code returned in BL:
  351.  00h    successful
  352.  80h    function not implemented
  353.  81h    Vdisk was detected
  354.  82h    an A20 error occurred
  355.  8Eh    a general driver error
  356.  8Fh    unrecoverable driver error
  357.  90h    HMA does not exist or is not managed by XMS provider
  358.  91h    HMA is already in use
  359.  92h    DX is less than the /HMAMIN= parameter
  360.  93h    HMA is not allocated
  361.  94h    A20 line still enabled
  362.  A0h    all extended memory is allocated
  363.  A1h    all available extended memory handles are allocated
  364.  A2h    invalid handle
  365.  A3h    source handle is invalid
  366.  A4h    source offset is invalid
  367.  A5h    destination handle is invalid
  368.  A6h    destination offset is invalid
  369.  A7h    length is invalid
  370.  A8h    move has an invalid overlap
  371.  A9h    parity error occurred
  372.  AAh    block is not locked
  373.  ABh    block is locked
  374.  ACh    block lock count overflowed
  375.  ADh    lock failed
  376.  B0h    only a smaller UMB is available
  377.  B1h    no UMB's are available
  378.  B2h    UMB segment number is invalid
  379.  
  380. Format of EMM structure:
  381. Offset    Size    Description    (Table 1965)
  382.  00h    DWORD    number of bytes to move (must be even)
  383.  04h    WORD    source handle
  384.  06h    DWORD    offset into source block
  385.  0Ah    WORD    destination handle
  386.  0Ch    DWORD    offset into destination block
  387. Notes:    if source and destination overlap, only forward moves (source base
  388.       less than destination base) are guaranteed to work properly
  389.     if either handle is zero, the corresponding offset is interpreted
  390.       as a real-mode address referring to memory directly addressable
  391.       by the processor
  392.  
  393. Format of XMS handle info [array]:
  394. Offset    Size    Description    (Table 1966)
  395.  00h    BYTE    handle
  396.  01h    BYTE    lock count
  397.  02h    DWORD    handle size
  398.  06h    DWORD    handle physical address (only valid if lock count nonzero)
  399. SeeAlso: #1936
  400. --------m-2F4310-----------------------------
  401. INT 2F - Cloaking - REAL-MODE API
  402.     AX = 4310h
  403. Return: ES:BX -> driver entry point (see #1938,#1967,#1968,#1969,#1970)
  404. SeeAlso: AX=4310h"XMS"
  405.  
  406. (Table 1967)
  407. Call the Cloaking v1.01 "Client Registration" function with:
  408.     AH = 7Eh
  409.     BX = subfunction
  410.         0000h get client registration count
  411.         0001h get client registration structures
  412.         ES:DI -> buffer for registration structures
  413. Return: AX = status
  414.         0000h failed
  415.         0001h successful
  416.         ---subfunction 00h---
  417.         BX = size of client structure in bytes
  418.         CX = number of clients installed
  419.         ---subfunction 01h---
  420.         ES:DI buffer filled
  421. SeeAlso: #1968,#1970,INT 2C/AX=0033h
  422.  
  423. (Table 1968)
  424. Call the Cloaking v1.01 "Verify Cloaking Host" function with:
  425.     AH = 7Fh
  426. Return: AX = status
  427.         0000h failed
  428.         0001h (successful) if installed
  429.         BX = version (0101h for v1.01)
  430.         CX = flags
  431.             bit 0: host is VCPI-based
  432.         DS:DX -> ASCIZ Cloaking host signature
  433.             "CLOAKING.EXE"0, followed by a far-call entry point to
  434.               uninstall host (see #1969) in Helix's CLOAKING.EXE
  435. SeeAlso: #1967,#1970
  436. Index:    installation check;Cloaking host|installation check;CLOAKING.EXE
  437.  
  438. (Table 1969)
  439. Call the CLOAKING.EXE "Uninstall Host" function with:
  440. Return:    AX = 4F4Bh ('OK') if successfully uninstalled protected-mode code
  441.  
  442. (Table 1970)
  443. Call the Cloaking "Start Protected-Mode Client" function with:
  444.     AH = 82h
  445.     DX = XMS handle of locked block containing protected-mode code
  446.     CL = code size (00h 16-bit, else 32-bit)
  447.     ESI, EDI = parameters to pass to protected-mode code
  448. Return: AX = status
  449.         nonzero success
  450.         0000h failed
  451.         BL = error code (A2h,B0h) (see #1964)
  452. Notes:    this function calls a user initialization function at offset 0 in
  453.       the XMS memory block (see #1971)
  454.     supported by Helix's RM386 v6.00 and Helix's CLOAKING.EXE
  455. SeeAlso: #1967,#1968
  456.  
  457. (Table 1971)
  458. Values user initialization function is called with:
  459.     EBX = physical address of block's start
  460.     ESI = user data from function 82h call
  461.     EDI = user data from function 82h call
  462.     CS = code selector for XMS block at EBX (16-bit or 32-bit)
  463.     DS = data selector for XMS block, starting at EBX
  464.     ES = selector for V86 memory access to full real-mode 1088K
  465.     GS = selector for full 4G flat address space
  466.     SS:ESP -> stack provided by host
  467. Return: via 32-bit FAR return
  468. Note:    the initialization function may call any protected-mode Cloaking
  469.       service; it should store the values of DS, ES, and GS for future
  470.       reference
  471. --------m-2F4310-----------------------------
  472. INT 2F - Helix Netroom RM386 v6.00 - XMS EXTENSIONS
  473.     AX = 4310h
  474. Return: ES:BX -> driver entry point (see #1972,#1973,#1974,#1975)
  475. Notes:    HIMEM.SYS v2.77 chains to previous handler if AH is not 00h or 10h
  476.     HIMEM.SYS requires at least 256 bytes free stack space when calling
  477.       the driver entry point
  478. SeeAlso: AX=4300h,AX=4310h"XMS",AX=4310h"Cloaking"
  479.  
  480. (Table 1972)
  481. Call the Netroom RM386 v6.00 "Reallocate upper memory block" function with:
  482.     AH = 80h
  483.     DX = segment address of UMB to resize
  484.     BX = new size of block in paragraphs
  485. Return: AX = status
  486.         0001h success
  487.         0000h failure
  488.         BL = error code (80h,B0h,B2h) (see #1964)
  489.         DX = maximum available size
  490. Note:    this function is identical to function 12h
  491. SeeAlso: #1957,#1973
  492.  
  493. (Table 1973)
  494. Call the Netroom RM386 v6.00 "re-enable HMA allocation" function with:
  495.     AH = 81h
  496. Return: AX = 0001h (success)
  497. SeeAlso: #1940,#1972,#1974
  498.  
  499. (Table 1974)
  500. Call the Netroom RM386 v6.00 "Create new UMB entry" function with:
  501.     AH = 83h
  502.     BX = segment of high-memory block
  503.     DX = first page of start of block
  504.     CX = number of consecutive pages in block
  505.     DI = start of UMB in block
  506. Return: AX = 0001h (success)
  507.     DI = segment of first high-DOS block
  508. Note:    the new UMB is not linked into the high-memory chain
  509. SeeAlso: #1955,#1973,#1975
  510.  
  511. (Table 1975)
  512. Call the Netroom RM386 v6.00 "Get all XMS handles info" function with:
  513.     AH = 84h
  514.     CX = size of buffer for handle info
  515.     ES:DI -> buffer for handle info (see #1966)
  516. Return: AX = 0001h (success)
  517.     DX = current number of allocated XMS handles
  518. SeeAlso: #1974,#1960
  519. --------m-2F4310-----------------------------
  520. INT 2F - NEC PC-9800 - XMZ - PRIVATE API
  521.     AX = 4310h
  522. Return: ES:BX -> driver entry point (see #1976,2713)
  523. Program: XMZ is an XMS 2.x-compatible driver for the NEC PC-98 series written
  524.       by ZOBplus Hayami and available at
  525.       ftp:/ftp.tohoku.ac.jp/pub/msdos/Memory/xmz/
  526. SeeAlso: AX=4300h,AX=4310h"XMS"
  527.  
  528. (Table 1976)
  529. Call XMZ v1.02 "Get HMA Information" function with:
  530.     AH = FFh  (XMZ only)
  531.     AL = 01h
  532. Return: AX = 1 on success
  533.     DX = minimum HMA allocation size (/HMAMIN=)
  534.     BX = actual size of HMA allocation, if in use (i.e. the value in DX
  535.           when XMS function 1 was called)
  536. SeeAlso: #1977
  537.  
  538. (Table 1977)
  539. Call XMZ v1.02 "Get EMB Handle Information" function with:
  540.     AH = FFh  (XMZ only)
  541.     AL = 02h
  542. Return: AX = 1 on success
  543.     DX = number of EMB handles configured (/NUMHANDLES=)
  544.     BX = offset in XMZ's segment of the handle table (use segment of
  545.           entry point) (see #1978)
  546. SeeAlso: #1976
  547.  
  548. Format of XMZ v1.02 EMB Handle structure:
  549. Offset    Size    Description    (Table 1978)
  550.  00h    BYTE    flag byte
  551.         04h unused handle slot
  552.         02h in-use handle slot
  553.         01h handle slot that represents a free block
  554.  01h    BYTE    lock count
  555.  02h    WORD    block start address (1K increments)
  556.  04h    WORD    block length (1K increments)
  557. SeeAlso: #1977
  558. --------m-2F4320-----------------------------
  559. INT 2F U - HIMEM.SYS - Mach 20 SUPPORT
  560.     AX = 4320h
  561.     ???
  562. Return: ???
  563. --------m-2F4330-----------------------------
  564. INT 2F CU - HIMEM.SYS v2.77+ - GET EXTERNAL A20 HANDLER ADDRESS
  565.     AX = 4330h
  566. Return: AL = 80h if external A20 handler provided
  567.         ES:BX -> external A20 handler (see #1979)
  568.         CL = A20 detection support
  569.         00h handler is unable to report A20 state
  570.         01h handler supports function 0002h to report A20 state
  571. Note:    HIMEM.SYS calls this function to allow an external program to provide
  572.       an A20 handler (i.e. to support a machine not supported by HIMEM
  573.       itself)
  574. SeeAlso: AX=4308h,AX=4310h
  575.  
  576. (Table 1979)
  577. Call parameters for external A20 handler are:
  578.     AX = function
  579.         0000h disable A20
  580.         0001h enable A20
  581.         0002h get A20 state
  582. Return: AX = status (functions 0000h and 0001h)
  583.         0000h failure
  584.         0001h successful
  585.     AX = A20 state (function 0002h)
  586.         0000h disabled
  587.         0001h enabled
  588. Note:    HIMEM.SYS only calls function 0002h if the returned CL indicated that
  589.       the handler supports the call
  590. --------E-2F43E0BX0000-----------------------
  591. INT 2F - DOS Protected Mode Services (DPMS) v1.0 - INSTALLATION CHECK
  592.     AX = 43E0h
  593.     BX = 0000h
  594.     CX = 4450h ('DP')
  595.     DX = 4D53h ('MS')
  596. Return: AX = 0000h if installed
  597.         CF clear
  598.         ES:DI -> server structure (see #1980)
  599.         ES:BX -> registration structure (pre-NWDOS 7 beta spec) (see #1982)
  600. Note:    the DPMS 1.0 server included with the original release of Novell DOS
  601.       7.0 supports both the beta and 1.0 specification, setting ES:BX even
  602.       if CX and DX are not as specified on entry (since the beta
  603.       specification did not use those registers).  However, the DPMS 1.1
  604.       server included with the March 1994 update does not support the beta
  605.       specification
  606. SeeAlso: AX=43E1h,AX=43E2h,AX=43E3h,INT 2F/AX=1687h
  607. Index:    signature strings;DPMS
  608.  
  609. Format of DPMS 1.0 server structure:
  610. Offset    Size    Description    (Table 1980)
  611.  00h  4 BYTEs    signature string "DPMS"
  612.  04h  2 BYTEs    DPMS version (major,minor)
  613.  06h  8 BYTEs    blank-padded server OEM name
  614.  0Eh  2 BYTEs    OEM server version (major,minor)
  615.  10h    WORD    DPMS flags (see #1981)
  616.  12h    BYTE    CPU type
  617.         (02h = 286, 03h = 386 or higher, higher values allowed)
  618.  
  619. Bitfields for DPMS flags:
  620. Bit(s)    Description    (Table 1981)
  621.  0    fast processor reset available (286 only)
  622.  1    DPMS server is enabled
  623.  2    memory is remapped
  624.  3-15    reserved (undefined)
  625.  
  626. Format of beta DPMS registration structure:
  627. Offset    Size    Description    (Table 1982)
  628.  00h    DWORD    real-mode API entry point (see #1984)
  629.  04h    DWORD    16-bit protected-mode API entry point (see #1984)
  630.  08h  8 BYTEs    reserved (0)
  631.  10h  8 BYTEs    blank-padded server OEM name
  632.  18h    WORD    flags
  633.         bit 0: fast processor reset available (286 only)
  634.         bits 1-15 reserved (undefined)
  635.  1Ah  2 BYTEs    DPMS version (major,minor)
  636.  1Ch    BYTE    CPU type (02h = 286, 03h = 386 or higher)
  637. --------m-2F43E1-----------------------------
  638. INT 2F - DOS Protected Mode Services (DPMS) v1.0 - REGISTER CLIENT
  639.     AX = 43E1h
  640.     CX = required protected-mode stack size in bytes
  641.     ES:DI -> DPMS client interface structure (see #1983)
  642. Return: AX = 0000h if supported
  643.        CF clear
  644.        ES:DI buffer filled with API entry point code from offset 0Ah
  645. Note:    the client is allowed to copy the returned API code to any location in
  646.       memory, and need not keep the three code fields together
  647. SeeAlso: AX=43E0h,AX=43E2h,AX=43E3h
  648.  
  649. Format of DPMS client interface structure:
  650. Offset    Size    Description    (Table 1983)
  651.  00h    WORD    0000h (structure version / flags)
  652.  02h  8 BYTEs    blank-padded client name
  653.  0Ah  7 BYTEs    real/virtual-86 mode API code (see #1984)
  654.  11h    BYTE    space for return instruction
  655.         set to C3h for near return, CBh for far return
  656.  12h  7 BYTEs    16-bit protected-mode API code (see #1984)
  657.  19h    BYTE    space for return instruction
  658.         set to C3h for near return, CBh for far return
  659.  1Ah  9 BYTEs    32-bit protected-mode API code (see #1984)
  660.  23h    BYTE    space for return instruction
  661.         set to C3h for near return, CBh for far return
  662. Note:    the DPMS server fills the return opcode bytes with zeros and DPMS
  663.       requests will thus crash the system unless the application
  664.       explicitly sets them (some early versions set them to C3h by
  665.       default, but one should not rely on that)
  666.  
  667. (Table 1984)
  668. Call DPMS entry point with:
  669.     AX = 0000h unregister client from server
  670.  ---control transfer functions---
  671.     AX = 0100h call protected-mode procedure
  672.         CX = number of words of stack to copy
  673.         ES:(E)DI -> callup/down register structure (see #1986)
  674.         Return: CF clear if successful
  675.             CF set on error
  676.                 AX = error code (see #1985)
  677.     AX = 0101h call real-mode procedure (RETF return)
  678.         CX = number of words of stack to copy
  679.         ES:(E)DI -> callup/down register structure (see #1986)
  680.         Return: CF clear if successful
  681.             CF set on error
  682.                 AX = error code (see #1985)
  683.     AX = 0102h call real-mode procedure (IRET return)
  684.         CX = number of words of stack to copy
  685.         ES:(E)DI -> callup/down register structure (see #1986)
  686.         Return: CF clear if successful
  687.             CF set on error
  688.                 AX = error code (see #1985)
  689.     AX = 0103h call real-mode interrupt handler
  690.         BL = interrupt number
  691.         CX = number of words of stack to copy
  692.         ES:(E)DI -> callup/down register structure (see #1986)
  693.         Return: CF clear if successful
  694.             CF set on error
  695.                 AX = error code (see #1985)
  696.     AX = 0104h register default protected mode procedure
  697.         ES:(E)DI -> default register structure (see #1987)
  698.         Return: CF clear if successful
  699.             CF set on error
  700.                 AX = error code (see #1985)
  701.     AX = 0105h register default real-mode procedure (RETF return)
  702.         ES:(E)DI -> default register structure (see #1987)
  703.         Return: CF clear if successful
  704.             CF set on error
  705.                 AX = error code (see #1985)
  706.         Note:    the procedure will be called from 16-bit prot. mode
  707.     AX = 0106h register default real-mode procedure (IRET return)
  708.         ES:(E)DI -> default register structure (see #1987)
  709.         Return: CF clear if successful
  710.             CF set on error
  711.                 AX = error code (see #1985)
  712.         Note:    the procedure will be called from 16-bit prot. mode
  713.     AX = 0107h register default real-mode interrupt handler
  714.         BL = interrupt number
  715.         ES:(E)DI -> default register structure (see #1987)
  716.         Return: CF clear if successful
  717.             CF set on error
  718.                 AX = error code (see #1985)
  719.         Note:    the handler will be called from 16-bit protected mode
  720.     AX = 0108h register default real-mode procedure (RETF return)
  721.         ES:(E)DI -> default register structure (see #1987)
  722.         Return: CF clear if successful
  723.             CF set on error
  724.                 AX = error code (see #1985)
  725.         Note:    the procedure will be called from 32-bit prot. mode
  726.     AX = 0109h register default real-mode procedure (IRET return)
  727.         ES:(E)DI -> default register structure (see #1987)
  728.         Return: CF clear if successful
  729.             CF set on error
  730.                 AX = error code (see #1985)
  731.         Note:    the procedure will be called from 32-bit prot. mode
  732.     AX = 010Ah register default real-mode interrupt handler
  733.         BL = interrupt number
  734.         ES:(E)DI -> default register structure (see #1987)
  735.         Return: CF clear if successful
  736.             CF set on error
  737.                 AX = error code (see #1985)
  738.         Note:    the handler will be called from 32-bit protected mode
  739.  ---descriptor management---
  740.     AX = 0200h allocate descriptors
  741.         CX = number of descriptors to allocate
  742.         Return: CF clear if successful
  743.                 AX = selector for first descriptor allocated
  744.             CF set on error
  745.                 AX = error code (see #1985)
  746.     AX = 0201h free a descriptor
  747.         BX = selector for descriptor
  748.         Return: CF clear if successful
  749.             CF set on error
  750.                 AX = error code (see #1985)
  751.     AX = 0202h create alias descriptor
  752.         BX = selector for descriptor to be aliased
  753.         Return: CF clear if successful
  754.                 AX = alias descriptor
  755.             CF set on error
  756.                 AX = error code (see #1985)
  757.     AX = 0203h build alias to real-mode segment
  758.         BX = descriptor
  759.         CX = real-mode segment
  760.         Return: CF clear if successful
  761.             CF set on error
  762.                 AX = error code (see #1985)
  763.     AX = 0204h set descriptor base
  764.         BX = descriptor
  765.         CX:DX = base address
  766.         Return: CF clear if successful
  767.             CF set on error
  768.                 AX = error code (see #1985)
  769.     AX = 0205h set descriptor limit
  770.         BX = descriptor
  771.         CX = limit
  772.         Return: CF clear if successful
  773.             CF set on error
  774.                 AX = error code (see #1985)
  775.     AX = 0206h set descriptor type/attribute
  776.         BX = descriptor
  777.         CL = type
  778.         CH = attribute
  779.         Return: CF clear if successful
  780.             CF set on error
  781.                 AX = error code (see #1985)
  782.     AX = 0207h get descriptor base
  783.         BX = descriptor
  784.         Return: CF clear if successful
  785.                 CX:DX = base address
  786.             CF set on error
  787.                 AX = error code (see #1985)
  788.  ---linear memory functions---
  789.     AX = 0300h get size of largest free block of memory
  790.         Return: CF clear if successful
  791.                 BX:CX = size
  792.             CF set on error
  793.                 AX = error code (see #1985)
  794.     AX = 0301h allocate block of extended memory
  795.         BX:CX = required size
  796.         Return: CF clear if successful
  797.                 BX:CX = base address
  798.                 SI:DI = handle
  799.             CF set on error
  800.                 AX = error code (see #1985)
  801.     AX = 0302h free block of extended memory
  802.         SI:DI = handle
  803.         Return: CF clear if successful
  804.             CF set on error
  805.                 AX = error code (see #1985)
  806.     AX = 0303h map linear memory
  807.         ES:(E)DI -> DDS (see #1988)
  808.         Return: CF clear if successful
  809.                 BX:CX = base address
  810.                 SI:DI = handle
  811.             CF set on error
  812.                 AX = error code (see #1985)
  813.     AX = 0304h unmap linear memory
  814.         SI:DI = handle
  815.         Return: CF clear if successful
  816.             CF set on error
  817.                 AX = error code (see #1985)
  818.     AX = 0305h get page table entries
  819.         ESI = linear address
  820.         (E)CX = count
  821.         ES:(E)DI -> buffer for page table entries
  822.         Return: CF clear if successful
  823.                 ES:(E)DI buffer filled
  824.             CF set on error
  825.                 AX = error code (see #1985)
  826.     AX = 0306h set page table entries
  827.         EBX = linear memory handle
  828.         ESI = linear address
  829.         (E)CX = count
  830.         ES:(E)DI -> buffer containing page table entries
  831.         Return: CF clear if successful
  832.             CF set on error
  833.                 AX = error code (see #1985)
  834.     AX = 0307h get largest mappable block size
  835.         Return: CF clear if successful
  836.                 BX:CX = size
  837.             CF set on error
  838.                 AX = error code (see #1985)
  839.  ---miscellaneous---
  840.     AX = 0400h relocate segment to extended memory
  841.         ES:SI = base address
  842.         CX = limit
  843.         BL = type
  844.         BH = attribute
  845.         DX = selector or 0000h
  846.         Return: CF clear if successful
  847.                 AX = selector
  848.                 BX:CX = new base address
  849.                 SI:DI = handle
  850.             CF set on error
  851.                 AX = error code (see #1985)
  852. Note:    the beta DPMS specification, which is still supported by the Novell
  853.       DOS 7.0 DPMS host, only supported functions 0100h-0103h, 0200h-0207h,
  854.       0300h-0304h, and 0400h
  855.  
  856. (Table 1985)
  857. Values for DPMS error code:
  858.  8000h    general error
  859.  8001h    unsupported function
  860.  8002h    unable to switch to protected mode
  861.  8004h    no default stack defined
  862.  8005h    unknown client
  863.  8010h    resource unavailable
  864.  8011h    descriptor unavailable
  865.  8012h    linear memory unavailable
  866.  8013h    physical memory unavailable
  867.  8021h    invalid value
  868.  8022h    invalid selector
  869.  8023h    invalid handle
  870.  8025h    invalid linear address
  871.  
  872. Format of DPMS callup/down register structure:
  873. Offset    Size    Description    (Table 1986)
  874.  00h    DWORD    EDI
  875.  04h    DWORD    ESI
  876.  08h    DWORD    EBP
  877.  0Ch  4 BYTEs    reserved (0) (ESP, may be used by DPMS server)
  878.  10h    DWORD    EBX
  879.  14h    DWORD    EDX
  880.  18h    DWORD    ECX
  881.  20h    DWORD    EAX
  882.  24h    DWORD    EIP
  883.  28h    WORD    CS
  884.  2Ah  2 BYTEs    reserved (0)
  885.  2Ch    DWORD    EFLAGS
  886.  30h    DWORD    ESP
  887.  34h    WORD    SS
  888.  36h  2 BYTEs    reserved (0)
  889.  38h    WORD    ES
  890.  3Ah  2 BYTEs    reserved (0)
  891.  3Ch    WORD    DS
  892.  3Eh  2 BYTEs    reserved (0)
  893.  40h    WORD    FS
  894.  42h  2 BYTEs    reserved (0)
  895.  44h    WORD    GS
  896.  46h  2 BYTEs    reserved (0)
  897.  
  898. Format of DPMS default register structure:
  899. Offset    Size    Description    (Table 1987)
  900.  00h    DWORD    EIP
  901.  04h    WORD    CS
  902.  06h  2 BYTEs    reserved (0)
  903.  08h    WORD    number of words to copy from stack to stack
  904.  0Ah    BYTE    (call) 00h
  905.         (ret) nonzero if call could not be made
  906.  0Bh    BYTE    reserved (may be used by some servers)
  907.  0Ch    DWORD    ESP
  908.  10h    WORD    SS
  909.  12h  2 BYTEs    reserved (0)
  910.  14h    WORD    ES
  911.  16h  2 BYTEs    reserved (0)
  912.  18h    WORD    DS
  913.  1Ah  2 BYTEs    reserved (0)
  914.  1Ch    WORD    FS
  915.  1Eh  2 BYTEs    reserved (0)
  916.  20h    WORD    GS
  917.  22h  2 BYTEs    reserved (0)
  918.  24h  9 BYTEs    API entry code (filled in by server)
  919.  
  920. Format of DPMS lock DDS:
  921. Offset    Size    Description    (Table 1988)
  922.  00h    DWORD    total size in bytes
  923.  04h    DWORD    offset
  924.  08h    WORD    segment or selector
  925.  0Ah    WORD    reserved
  926.  0Ch    WORD    maximum number of physical blocks structure has space for
  927.  0Eh    WORD    number of physical blocks listed
  928.  10h    DWORD    physical address of first block
  929.  14h    DWORD    size in bytes of first block
  930.     ...
  931. --------m-2F43E2-----------------------------
  932. INT 2F - DOS Protected Mode Services (DPMS) v1.0 - ENABLE/DISABLE DPMS
  933.     AX = 43E2h
  934.     BX = new state (0000h disable, 0001h enable)
  935. Return: AX = 0000h if supported
  936. Note:    this function should normally be called only by system software
  937. SeeAlso: AX=43E0h,AX=43E1h,AX=43E3h
  938. --------m-2F43E3BX0000-----------------------
  939. INT 2F - DOS Protected Mode Services (DPMS) v1.0 - DPMS STARTUP BROADCAST
  940.     AX = 43E3h
  941.     BX = 0000h
  942.     CX = 4450h ('DP')
  943.     DX = 4D53h ('MS')
  944. SeeAlso: AX=43E0h,AX=43E4h
  945. --------m-2F43E4BX0000-----------------------
  946. INT 2F - DOS Protected Mode Services (DPMS) v1.0 - DPMS EXIT BROADCAST
  947.     AX = 43E4h
  948.     BX = 0000h
  949.     CX = 4450h ('DP')
  950.     DX = 4D53h ('MS')
  951. SeeAlso: AX=43E0h,AX=43E3h
  952. --------E-2F44-------------------------------
  953. INT 2F U - DOS Extender support???
  954.     AH = 44h
  955.     AL = function (at least 0Bh, 15h, 17h)
  956.     ???
  957. Return: ???
  958. Note:    called by Codeview for Windows
  959. SeeAlso: AH=86h
  960. --------G-2F4500-----------------------------
  961. INT 2F U - Microsoft Profiler (PROF.COM/VPROD.386) - INSTALLATION CHECK
  962.     AX = 4500h
  963. Return: AL = installation status
  964.         01h if PROF.COM installed
  965.         02h if VPROD.386 installed
  966. SeeAlso: AX=4501h,AX=4502h
  967. --------G-2F4501-----------------------------
  968. INT 2F U - Microsoft Profiler (PROF.COM/VPROD.386) - SETUP PROFILER
  969.     AX = 4501h
  970.     BX = CSIPS buffer size in KB (first parameter for ProfSetup)
  971.     CX = output limit in KB (second parameter for ProfSetup)
  972. Note:    this call is not supported by PROF.COM
  973. SeeAlso: AX=4502h,AX=4503h
  974. --------G-2F4502-----------------------------
  975. INT 2F U - Microsoft Profiler (PROF.COM/VPROD.386) - SET SAMPLING RATE
  976.     AX = 4502h
  977.     BL = sampling rate for PROF.COM (0 < BL <= 13)
  978.         (01h = 8192/s, 04h = 1024/s, 08h = 32/s, 0Dh = 1/s)
  979.     CX = sampling rate for VPROD.386
  980. Note:    for PROF.COM, this programs the CMOS clock by setting BL+2 as the
  981.       low four bits of CMOS register 0Ah.  The interruption rate is
  982.       1 SHL (15 - BL) per second.
  983. SeeAlso: AX=4501h,AX=4503h
  984. --------G-2F4503-----------------------------
  985. INT 2F U - Microsoft Profiler (PROF.COM/VPROD.386) - START PROFILING
  986.     AX = 4503h
  987. Notes:    Profiling is also turned on by the key combinations
  988.       LeftShift + RightShift + Alt and LeftShift + RightShift + Ctrl
  989.     for PROF.COM, this call programs the CMOS clock by reading register
  990.       0Ch, and setting bit 6 of register 0Bh.  It then makes sure that IRQ8
  991.       is unmasked
  992. SeeAlso: AX=4504h
  993. --------G-2F4504-----------------------------
  994. INT 2F U - Microsoft Profiler (PROF.COM/VPROD.386) - STOP PROFILING
  995.     AX = 4504h
  996. Notes:    profiling is also turned off by the key combination
  997.       LeftShift + RightShift
  998.     for PROF.COM, this programs the CMOS clock by reading register 0Ch
  999.       and clearing bit 6 of register 0Bh.  It then masks IRQ8.
  1000. SeeAlso: AX=4503h,AX=4505h,AX=4506h,AX=4507h
  1001. --------G-2F4505-----------------------------
  1002. INT 2F U - Microsoft Profiler (PROF.COM/VPROD.386) - CLEAR PROFILING DATA
  1003.     AX = 4505h
  1004. SeeAlso: AX=4503h,AX=4504h,AX=4506h
  1005. --------G-2F4506-----------------------------
  1006. INT 2F U - Microsoft Profiler (PROF.COM/VPROD.386) - "ProfFlush"
  1007.     AX = 4506h
  1008. SeeAlso: AX=4505h,AX=4507h
  1009. --------G-2F4507-----------------------------
  1010. INT 2F U - Microsoft Profiler (PROF.COM/VPROD.386) - "ProfFinish"
  1011.     AX = 4507h
  1012. Note:    this call is essentially a "ProfStop" (AX=4504h) followed by
  1013.       "ProfFlush" (AX=4506h)
  1014. SeeAlso: AX=4504h,AX=4505h,AX=4506h
  1015. --------G-2F4508-----------------------------
  1016. INT 2F U - Microsoft Profiler (PROF.COM/VPROD.386) - ALTERNATE SEGDEBUG IFACE
  1017.     AX = 4508h
  1018.     BX = ordinal (or 0000h)
  1019.     CX = segment
  1020.     DX = instance (or 0000h)
  1021.     SI = type (or 0000h)
  1022.     ES:DI -> ASCIZ module name
  1023. Notes:    this call is an alternate entry to the profiler's SEGDEBUG
  1024.       interface, but only to function 0, for notifying the profiler of
  1025.       each new segment loaded.  The SHOWHITS utility then examines the
  1026.       profiler's output files (CSIPS.DAT and SEGENTRY.DAT) in conjunction
  1027.       with symbol files to provide information in a useful form.
  1028.     this call does not have a corresponding Windows function
  1029. SeeAlso: AX=4500h
  1030. --------D-2F4601-----------------------------
  1031. INT 2F CU - MS Windows WINOLDAP - SWITCHING ???
  1032.     AX = 4601h
  1033. Return: ???
  1034. Note:    the DOS 5+ kernel intercepts this function and copies the MCB
  1035.        following the caller's PSP memory block into the DOS data segment;
  1036.        in conjunction with AX=4602h, this intercept is used by DOS to
  1037.        avoid corruption of the Windows real-mode heap's end sentinel
  1038. SeeAlso: AX=1700h,AX=4602h
  1039. --------D-2F4602-----------------------------
  1040. INT 2F CU - MS Windows WINOLDAP - SWITCHING ???
  1041.     AX = 4602h
  1042. Return: ???
  1043. Note:    the DOS 5+ kernel intercepts this function and copies the
  1044.       previously-saved MCB from the DOS data segment into the MCB following
  1045.       the caller's PSP memory block; in conjunction with AX=4601h, this
  1046.       intercept is used by DOS to avoid corruption of the Windows real-mode
  1047.       heap's end sentinel
  1048. SeeAlso: AX=1700h,AX=4601h
  1049. --------E-2F46-------------------------------
  1050. INT 2F U - Windows/286 DOS Extender
  1051.     AH = 46h
  1052.     AL = subfunction (03h,04h)
  1053. Return: ???
  1054. Note:    these two subfunctions are called by MS Windows 3.0
  1055. --------v-2F4653CX0002-----------------------
  1056. INT 2F - F-PROT v1.x only - F-LOCK.EXE - API
  1057.     AX = 4653h
  1058.     CX = 0002h
  1059.     BX = subfunction
  1060.         0000h  installation check
  1061.         Return: AX = FFFFh
  1062.         0001h  uninstall
  1063.         Return: AX,BX,ES destroyed
  1064.         0002h  disable (v1.08 and below only)
  1065.         0003h  enable (v1.08 and below only)
  1066. Program: F-LOCK is part of the shareware F-PROT virus/trojan protection
  1067.       package by Fridrik Skulason
  1068. SeeAlso: AX=4653h/CX=0003h,AX=CA00h,INT 21/AX=4BEEh
  1069. Index:    installation check;F-LOCK|uninstall;F-LOCK
  1070. --------v-2F4653CX0003-----------------------
  1071. INT 2F - F-PROT v1.x only - F-XCHK.EXE - API
  1072.     AX = 4653h
  1073.     CX = 0003h
  1074.     BX = subfunction
  1075.         0000h  installation check
  1076.         Return: AX = FFFFh
  1077.         0001h  uninstall
  1078.         Return: AX,BX,ES destroyed
  1079. Program: F-XCHK is part of the shareware F-PROT virus/trojan protection
  1080.       package by Fridrik Skulason
  1081. SeeAlso: AX=4653h/CX=0002h,AX=4653h/CX=0004h,AX=CA00h
  1082. Index:    installation check;F-XCHK|uninstall;F-XCHK
  1083. --------v-2F4653CX0004-----------------------
  1084. INT 2F - F-PROT v1.x only - F-POPUP.EXE - API
  1085.     AX = 4653h
  1086.     CX = 0004h
  1087.     BX = subfunction
  1088.         0000h  installation check
  1089.         Return: AX = FFFFh
  1090.         0001h  uninstall
  1091.         Return: AX,BX,ES destroyed
  1092.         0002h  disable (v1.08 and below only)
  1093.            display message (v1.14+)
  1094.             other registers: ???
  1095.         0003h  enable (v1.08 and below only)
  1096.            display message (v1.14+)
  1097.             other registers: ???
  1098.             Return: AX = key pressed by user
  1099. Program: F-POPUP is part of the shareware F-PROT virus/trojan protection
  1100.       package by Fridrik Skulason
  1101. SeeAlso: AX=4653h/CX=0003h,AX=4653h/CX=0005h,AX=CA00h
  1102. Index:    installation check;F-POPUP|uninstall;F-POPUP
  1103. --------v-2F4653CX0005-----------------------
  1104. INT 2F - F-PROT v1.x only - F-DLOCK.EXE - API
  1105.     AX = 4653h
  1106.     CX = 0005h
  1107.     BX = subfunction
  1108.         0000h installation check
  1109.         Return: AX = FFFFh
  1110.         0001h uninstall
  1111.         Return: AX,BX,ES destroyed
  1112. Program: F-DLOCK is part of the shareware F-PROT virus/trojan protection
  1113.       package by Fridrik Skulason
  1114. SeeAlso: AX=4653h/CX=0004h,AX=CA00h
  1115. Index:    installation check;F-DLOCK|uninstall;F-DLOCK
  1116. --------W-2F4680-----------------------------
  1117. INT 2F U - MS Windows v3.0 - INSTALLATION CHECK
  1118.     AX = 4680h
  1119. Return: AX = result
  1120.         0000h MS Windows 3.0 running in real (/R) or standard (/S) mode,
  1121.           or DOS 5 DOSSHELL active
  1122.         nonzero  no Windows, Windows prior to 3.0, or Windows3 in enhanced
  1123.           mode
  1124. Note:    Windows 3.1 finally provides an installation check which works in all
  1125.       modes (see AX=160Ah)
  1126. SeeAlso: AX=1600h,AX=160Ah
  1127. ----------2F47-------------------------------
  1128. INT 2F U - ???
  1129.     AH = 47h
  1130.     ???
  1131. Return: ???
  1132. Note:    reportedly called by Microsoft BASIC Compiler v7.0
  1133. --------K-2F4800-----------------------------
  1134. INT 2F - DOS 5+ DOSKEY - INSTALLATION CHECK
  1135.     AX = 4800h
  1136. Return: AL = nonzero if installed (DOS 5.0 and 6.0 return AX=AA02h)
  1137.         ES = segment of DOSKEY resident portion
  1138. Note:    DOSKEY chains if AL is not 00h or 10h on entry
  1139. SeeAlso: AX=4800h"PCED",AX=4810h
  1140. --------K-2F4800-----------------------------
  1141. INT 2F - PCED v2.1 - INSTALLATION CHECK
  1142.     AX = 4800h
  1143. Return: AX = AACDh if installed
  1144.         ES = segment of PCED kernel (PCED has multiple code segments)
  1145. Program: PCED v2.1 is a command line editor/history/macro facility by
  1146.       Cove Software.  It is the commercial version of the freeware CED.
  1147. Notes:    DOSKEY also responds to this call if installed, returning AX=AA02h.
  1148.     unlike DOSKEY, PCED does *not* chain if AL contains an
  1149.       unsupported function code.  It IRETs with all registers intact.
  1150. --------K-2F4810-----------------------------
  1151. INT 2F - DOS 5+ DOSKEY, PCED v2.1 - READ INPUT LINE FROM CONSOLE
  1152.     AX = 4810h
  1153.     DS:DX -> line buffer (see #0647 at INT 21/AH=0Ah)
  1154. Return: AX = 0000h if successful
  1155. Notes:    the first byte (length) of the buffer MUST be 80h, or DOSKEY chains to
  1156.       the previous handler; PCED allows sizes other than 80h
  1157.     if the user's input is a macro name, no text is placed in the buffer
  1158.       even though AX=0000h on return; the program must immediately issue
  1159.       this call again to retrieve the expansion of the macro.  Similarly,
  1160.       if the user enters a special parameter such as $*, this call must
  1161.       be repeated to retrieve the expansion; on the second call, DOSKEY
  1162.       overwrites the macro name on the screen with its expansion.
  1163.     unlike DOSKEY, PCED expands all macros on the first call, so it is
  1164.       not necessary to make two calls; since the buffer is not empty on
  1165.       return, DOSKEY-aware programs will not make the second call
  1166.     DOSKEY chains if AL is not 00h or 10h on entry
  1167. SeeAlso: AX=4800h,INT 21/AH=0Ah
  1168. --------K-2F48C0-----------------------------
  1169. INT 2F - PCED v2.1 - PCED API
  1170.     AX = 48C0h
  1171.     DX = API function code
  1172.     other registers as required by the specified function
  1173. Return: CF clear if successful
  1174.     CF set on error
  1175.         AX = PCED error code
  1176.     other registers as appropriate for API function
  1177. Program: PCED v2.1 is a command line editor/history/macro facility by
  1178.       Cove Software.  It is the commercial version of the freeware CED.
  1179. Note:    the full API information is available from Cove Software
  1180. SeeAlso: AX=4800h"PCED",AX=48C1h,AX=48C2h,AX=48C3h
  1181. --------U-2F48C1BL00-------------------------
  1182. INT 2F - PCED/VSTACK - INSTALLATION CHECK
  1183.     AX = 48C1h
  1184.     BL = 00h
  1185. Return: AX = 0000h if installed
  1186.         BX = VSTACK resident segment
  1187. Program: VSTACK is a resident backscroll utility included as part of the PCED
  1188.       package by Cove Software
  1189. Note:    chains if BL <> 00h on entry
  1190. SeeAlso: AX=48C0h,AX=48C2h
  1191. --------U-2F48C2BL00-------------------------
  1192. INT 2F - PCED/ATTRIB - INSTALLATION CHECK
  1193.     AX = 48C2h
  1194.     BL = 00h
  1195. Return: AX = 0000h if installed
  1196.         BX = ATTRIB resident segment
  1197. Program: ATTRIB is a resident file attribute changer included as part of the
  1198.       PCED package by Cove Software
  1199. Note:    chains if BL <> 00h on entry
  1200. SeeAlso: AX=48C0h,AX=48C1h,AX=48C3h
  1201. --------K-2F48C3BL00-------------------------
  1202. INT 2F - PCED/KEYDEF - INSTALLATION CHECK
  1203.     AX = 48C3h
  1204.     BL = 00h
  1205. Return: AX = 0000h if installed
  1206.         BX = KEYDEF resident segment
  1207. Program: KEYDEF is a resident keyboard redefinition utility included as part
  1208.       of the PCED package by Cove Software
  1209. Note:    chains if BL <> 00h on entry
  1210. SeeAlso: AX=48C0h,AX=48C2h,AX=48C4h
  1211. --------U-2F48C4BL00-------------------------
  1212. INT 2F - PCED/FLIST - INSTALLATION CHECK
  1213.     AX = 48C4h
  1214.     BL = 00h
  1215. Return: AX = 0000h if installed
  1216.         BX = FLIST resident segment
  1217. Program: FLIST is a resident filelist processor included as part of the PCED
  1218.       package by Cove Software
  1219. Note:    chains if BL <> 00h on entry
  1220. SeeAlso: AX=48C0h,AX=48C3h,AX=48C5h
  1221. --------U-2F48C5BL00-------------------------
  1222. INT 2F - PCED/ASSOC - INSTALLATION CHECK
  1223.     AX = 48C5h
  1224.     BL = 00h
  1225. Return: AX = 0000h if installed
  1226.         BX = ASSOC resident segment
  1227. Program: ASSOC is a resident utility included as part of the PCED package which
  1228.       associated files with executable programs based on their extensions
  1229. Note:    chains if BL > 02h on entry
  1230. SeeAlso: AX=48C0h,AX=48C4h,AX=48C5h/BL=01h,AX=48C5h/BL=02h
  1231. --------U-2F48C5BL01-------------------------
  1232. INT 2F - PCED/ASSOC - GET VERSION
  1233.     AX = 48C5h
  1234.     BL = 01h
  1235. Return: AX = 0000h if installed
  1236.         BX = binary ASSOC version (BL = major, BH = minor)
  1237. Note:    chains if BL > 02h on entry
  1238. SeeAlso: AX=48C0h,AX=48C5h/BL=00h,AX=48C5h/BL=02h
  1239. --------U-2F48C5BL02-------------------------
  1240. INT 2F - PCED/ASSOC - ASSOCIATION TEST
  1241.     AX = 48C5h
  1242.     BL = 02h
  1243.     DS:SI -> ASCIZ filename
  1244. Return: AX = status
  1245.         0000h if filename is unknown
  1246.         0001h if there is an association defined for the file
  1247.     BX destroyed
  1248. Program: ASSOC is a resident utility included as part of the PCED package which
  1249.       associated files with executable programs based on their extensions
  1250. Note:    chains if BL > 02h on entry
  1251. SeeAlso: AX=48C0h,AX=48C5h/BL=00h,AX=48C5h/BL=01h
  1252. ----------2F49-------------------------------
  1253. INT 2F U - ???
  1254.     AH = 49h
  1255.     ???
  1256. Return: ???
  1257. Note:    reportedly called by DOS 5.0 installation
  1258. --------D-2F4A00CX0000-----------------------
  1259. INT 2F CU - DOS 5+ - FLOPPY-DISK LOGICAL DRIVE CHANGE NOTIFICATION
  1260.     AX = 4A00h
  1261.     CX = 0000h
  1262.     DH = new drive number
  1263.     DL = current drive number
  1264. Return: CX = FFFFh to skip "Insert diskette for drive X:" message
  1265. Note:    called by MS-DOS 5.0+ IO.SYS just before displaying the message
  1266.       "Insert diskette for drive X:" on single-floppy systems
  1267. --------D-2F4A01-----------------------------
  1268. INT 2F - DOS 5+ - QUERY FREE HMA SPACE
  1269.     AX = 4A01h
  1270. Return: BX = number of bytes available in HMA (0000h if DOS not using HMA)
  1271.     ES:DI -> start of available HMA area (FFFFh:FFFFh if not using HMA)
  1272. Notes:    called by Windows 3.1 DOSX.EXE
  1273.     supported by Novell DOS 7
  1274. SeeAlso: AX=4310h,AX=4A02h
  1275. --------D-2F4A02-----------------------------
  1276. INT 2F - DOS 5+ - ALLOCATE HMA SPACE
  1277.     AX = 4A02h
  1278.     BX = number of bytes
  1279. Return: ES:DI -> start of allocated HMA block or FFFFh:FFFFh
  1280.     BX = number of bytes actually allocated (rounded up to next paragraph
  1281.           for DOS 5.0 and 6.0)
  1282. Notes:    this call is not valid unless DOS is loaded in the HMA (DOS=HIGH)
  1283.     called by Windows 3.1 DOSX.EXE
  1284.     supported by Novell DOS 7
  1285. SeeAlso: AX=4A01h
  1286. --------T-2F4A05-----------------------------
  1287. INT 2F U - DOS 5+ DOSSHELL - TASK SWITCHING API???
  1288.     AX = 4A05h
  1289.     SI = function
  1290.         0000h reset???
  1291.         0001h ???
  1292.         ES:BP -> 80-byte buffer containing ???
  1293.         0002h ???
  1294.         0003h ???
  1295.         0004h ???
  1296.         BL = ???
  1297.         0005h ???
  1298.         0006h get ???
  1299.         Return: ES:SI -> ???
  1300.         0007h get ???
  1301.         Return: AX = ???
  1302.         0008h get ???
  1303.         Return: DX:AX -> ??? (internal control data of some kind)
  1304.         0009h get ???
  1305.         Return: ES:SI -> ??? (apparently identical to function 0006h)
  1306.         000Ah ???
  1307.         BL = length of buffer
  1308.         ES:BP -> buffer containing ???
  1309.         000Bh get ???
  1310.         Return: AX = ???
  1311.         000Ch ???
  1312.         BL = ???
  1313.         Return: if BL nonzero on entry
  1314.                 DX:AX -> ???
  1315.             if BL = 00h on entry
  1316.                 ES:SI -> ???
  1317. Notes:    DOSSHELL chains to the previous handler if SI is not one of the values
  1318.       listed above
  1319.     the DOSSWAP.EXE module calls functions 03h,04h,05h,07h,08h,09h,0Ch
  1320.     the Windows 3.1 DSWAP.EXE and WSWAP.EXE task switchers use these calls
  1321. SeeAlso: AX=4B01h
  1322. --------D-2F4A06-----------------------------
  1323. INT 2F CU - DOS 5+ - DOS SUPERVISOR "REBOOT PANEL" - ADJUST MEMORY SIZE
  1324.     AX = 4A06h
  1325.     DX = segment following last byte of conventional memory
  1326. Return: DX = segment following last byte of memory available for use by DOS
  1327. Desc:    used to override the default memory size when booting diskless
  1328.       workstations
  1329. Notes:    called by MS-DOS 5+ IO.SYS startup code if the signature "RPL" is
  1330.       present three bytes beyond the INT 2F handler; this call overrides
  1331.       the value returned by INT 12
  1332.     hooked by RPL code at the top of memory to protect itself from being
  1333.       overwritten; DOS builds a memory block with owner = 0008h and name
  1334.       "RPL" which must be freed by the RPL code when it is done
  1335. SeeAlso: INT 12,INT 18
  1336. --------N-2F4A07-----------------------------
  1337. INT 2F U - RESERVED FOR PROTMAN SUPPORT
  1338.     AX = 4A07h
  1339.     ???
  1340. Return: ???
  1341. --------c-2F4A10BX0000-----------------------
  1342. INT 2F - SMARTDRV v4.00+ - INSTALLATION CHECK AND HIT RATIOS
  1343.     AX = 4A10h
  1344.     BX = 0000h
  1345.     CX = EBABh (v4.1+; see Note)
  1346. Return: AX = BABEh if installed
  1347.         DX:BX = cache hits
  1348.         DI:SI = cache misses
  1349.         CX = number of dirty cache elements
  1350.         BP = version in BCD (4.10 = 0410h)
  1351. Notes:    most of the SMARTDRV API, including this call, is supported by
  1352.       PC-Cache v8.0 and recent versions of the Norton Caches
  1353.     if DBLSPACE.BIN is installed but SMARTDRV has not yet been installed,
  1354.       then calls of this function with CX<>EBABh on entry cause
  1355.       DBLSPACE.BIN to display the error message
  1356.       "Cannot run SMARTDrive 4.0 with DoubleSpace" and abort the caller
  1357.       with INT 21/AX=4C00h
  1358.     SMARTDRV v3.x had a completely different API using IOCTL calls, which
  1359.       was also supported by the Norton Caches
  1360. SeeAlso: AX=4A10h/BX=0001h,AX=4A10h/BX=0004h,AX=4A10h/BX=0005h
  1361. SeeAlso: AX=4A10h/BX=0007h,AX=4A10h/BX=1234h,AX=4A11h/BX=0000h
  1362. SeeAlso: INT 21/AX=4402h"SMARTDRV",INT 21/AX=4403h"SMARTDRV"
  1363. --------c-2F4A10BX0000-----------------------
  1364. INT 2F U - Novell NWCACHE - ???
  1365.     AX = 4A10h
  1366.     BX = 0000h
  1367.     CX = 0EDCh ('EDC' = Novell European Development Center)
  1368. Return: ???
  1369. SeeAlso: AX=4A10h/BX=0001h"NWCACHE"
  1370. --------c-2F4A10BX0001-----------------------
  1371. INT 2F - SMARTDRV v4.00+ - FLUSH BUFFERS (COMMIT CACHE)
  1372.     AX = 4A10h
  1373.     BX = 0001h
  1374. Note:    this function is also supported by PC-Cache v8.0.
  1375. SeeAlso: AX=4A10h/BX=0000h,AX=4A10h/BX=0002h
  1376. --------c-2F4A10BX0001-----------------------
  1377. INT 2F U - Novell NWCACHE - ???
  1378.     AX = 4A10h
  1379.     BX = 0001h
  1380.     CX = 0EDCh ('EDC' = Novell European Development Center)
  1381. Return: ???
  1382. SeeAlso: AX=4A10h/BX=0000h"NWCACHE"
  1383. --------c-2F4A10BX0002-----------------------
  1384. INT 2F - SMARTDRV v4.00+ - RESET CACHE
  1385.     AX = 4A10h
  1386.     BX = 0002h
  1387. Note:    this function is also supported by PC-Cache v8.0.
  1388. SeeAlso: AX=4A10h/BX=0000h,AX=4A10h/BX=0001h
  1389. --------c-2F4A10BX0003-----------------------
  1390. INT 2F - SMARTDRV v4.00+ - STATUS
  1391.     AX = 4A10h
  1392.     BX = 0003h
  1393.     BP = drive number (0=A, 1=B, etc.)
  1394.     DL = subfunction
  1395.         00h only get information
  1396.         01h turn on read cache
  1397.         02h turn off read cache
  1398.         03h turn on write cache
  1399.         04h turn off write cache
  1400. Return: AX = BABEh if OK
  1401.     DL = status (see #1989)
  1402.     DL = FFh if drive does not exist
  1403. Notes:    If the read cache is off, reads will not be cached, but writes will
  1404.       continue to be cached if the write-cache is enabled.
  1405.     this function is also supported by PC-Cache v8.0.
  1406. SeeAlso: AX=4A10h/BX=0000h
  1407.  
  1408. Bitfields for SMARTDRV status:
  1409. Bit(s)    Description    (Table 1989)
  1410.  7    not cached
  1411.  6    write-through (not write-cached)
  1412.  0-5    real drive number (0=A, 1=B...)
  1413. --------c-2F4A10BX0004-----------------------
  1414. INT 2F - SMARTDRV v4.00+ - GET CACHE SIZE
  1415.     AX = 4A10h
  1416.     BX = 0004h
  1417. Return: AX = size in elements of full-sized cache
  1418.     BX = current size in elements
  1419.     CX = size of one element in bytes
  1420.     DX = number of elements under Windows
  1421. Note:    this function is also supported by PC-Cache v8.0.
  1422. SeeAlso: AX=4A10h/BX=0000h,AX=4A10h/BX=0003h,AX=4A10h/BX=0005h
  1423. --------c-2F4A10BX0005-----------------------
  1424. INT 2F - SMARTDRV v4.00+ - GET DOUBLE-BUFFER STATUS
  1425.     AX = 4A10h
  1426.     BX = 0005h
  1427.     BP = drive number (0=A, 1=B...)
  1428. Return: AX = BABEh if double-buffered
  1429.         ES:DI -> 16-byte array of status bytes for fixed disks (see #1990)
  1430. SeeAlso: AX=4A10h/BX=0000h,AX=4A10h/BX=0003h,AX=4A10h/BX=0006h
  1431.  
  1432. (Table 1990)
  1433. Values for SMARTDRV status byte:
  1434.  00h    state unknown
  1435.  FFh    drive double-buffered
  1436.  else    not double-buffered
  1437. --------c-2F4A10BX0006-----------------------
  1438. INT 2F CU - SMARTDRV v4.00+ - CHECK IF DRIVE CACHEABLE
  1439.     AX = 4A10h
  1440.     BX = 0006h
  1441.     CL = drive number (01h = A:)
  1442. Return: AX = 0006h if drive should not be cached by SMARTDRV
  1443. Note:    called by SMARTDRV at startup to determine whether it should cache
  1444.       a particular drive
  1445. SeeAlso: AX=4A10h/BX=0000h
  1446. --------c-2F4A10BX0007-----------------------
  1447. INT 2F - SMARTDRV v4.00+ - GET DEVICE DRIVER FOR DRIVE
  1448.     AX = 4A10h
  1449.     BX = 0007h
  1450.     BP = drive number (00h=A:)
  1451. Return: DL = unit number within device driver
  1452.     ES:DI -> device driver header for drive
  1453. Note:    this function is also supported by PC-Cache v8.0.
  1454.     this call is reported to always return the driver header of the
  1455.       standard block driver (A:-C:+) for SmartDrive v5.00 from MS-DOS 6.2
  1456. SeeAlso: AX=4A10h/BX=0000h,AX=4A11h/BX=0003h,AX=4A11h/BX=0004h
  1457. --------c-2F4A10BX0008-----------------------
  1458. INT 2F - SMARTDRV v4.20+ - GET/SET FLUSH BEFORE PROMPT, CD-ROM SUPPORT
  1459.     AX = 4A10h
  1460.     BX = 0008h
  1461.     DL = subfunction
  1462.         00h set
  1463.         DH = new states
  1464.             bit 0: flush before prompt
  1465.             bits 1-7 reserved (0)
  1466.         01h get
  1467.         Return: DH = status flags
  1468.                 bit 0: (v4.2+) flush before prompt
  1469.                 bit 1: (v5.0+) CD-ROM caching support installed
  1470. Note:    v4.2 was an interim release to fix problems in the SMARTDRV included
  1471.       with MS-DOS 6.00; v5.00 is included with MS-DOS 6.2
  1472. --------c-2F4A10BX000A-----------------------
  1473. INT 2F - SMARTDRV v4.00+ - GET ELEMENT STATUS TABLE
  1474.     AX = 4A10h
  1475.     BX = 000Ah
  1476. Return: ES:BX -> information pointer table (see #1991)
  1477. Note:    this function is also supported by PC-Cache v8.0.
  1478. SeeAlso: AX=4A10h/BX=0000h
  1479.  
  1480. Format of SMARTDRV information pointer table:
  1481. Offset    Size    Description    (Table 1991)
  1482.  00h    WORD    offset of ??? byte/word array (byte if elements < 2000h bytes)
  1483.  02h    WORD    offset of dirty flag byte/word array (byte if elts < 2000h)
  1484.         each byte/word is a bit string of the dirty sectors in element
  1485.  04h    WORD    offset of word array containing low halves of unique
  1486.           identifiers for the corresponding element's contents
  1487.  06h    WORD    offset of word array containing high halves of unique
  1488.           identifiers for the corresponding element's contents
  1489.  08h    WORD    offset of WORD containing current number of elements in cache
  1490. --------c-2F4A10BX1234-----------------------
  1491. INT 2F - SMARTDRV v4.00+ - SIGNAL SERIOUS ERROR
  1492.     AX = 4A10h
  1493.     BX = 1234h
  1494. Desc:    this function pops up a message box saying that a serious error
  1495.       occurred and to hit R to retry, then waits for the keypress
  1496. Note:    this function is also supported by PC-Cache v8.0.
  1497. SeeAlso: AX=4A10h/BX=0000h
  1498. --------k-2F4A11BX0000-----------------------
  1499. INT 2F - DBLSPACE.BIN - "GetVersion" - INSTALLATION CHECK
  1500.     AX = 4A11h
  1501.     BX = 0000h
  1502. Return: AX = 0000h (successful)
  1503.     BX = 444Dh ("DM")
  1504.     CL = first drive letter used by DBLSPACE (41h ['A'] = A:)
  1505.     CH = number of drive letters used by DBLSPACE
  1506.     DX = internal DBLSPACE.BIN version number (bits 14-0)
  1507.         bit 15 set if DBLSPACE.BIN has not yet been relocated to final
  1508.           position in memory (i.e. DBLSPACE.SYS /MOVE)
  1509. Program: DBLSPACE.BIN is the resident driver for DoubleSpace, the
  1510.       disk-compression software bundled with MS-DOS 6.0 and 6.20
  1511. Notes:    this function is also supported by the version of SuperStor bundled
  1512.       with IBM DOS 6.x and "preloading" versions of Stacker
  1513.     the complete DBLSPACE.BIN API is still supported by MS-DOS 6.22's
  1514.       DRVSPACE.BIN
  1515. SeeAlso: AX=4A11h/BX=0001h,AX=4A11h/BX=0002h,AX=4A11h/BX=0003h
  1516. SeeAlso: AX=4A11h/BX=0005h,AX=4A11h/BX=0007h,AX=4A11h/BX=FFFFh
  1517. SeeAlso: INT 21/AX=4404h"DBLSPACE"
  1518. --------k-2F4A11BX0001-----------------------
  1519. INT 2F - DBLSPACE.BIN - "GetDriveMapping" - GET DRIVE MAPPING
  1520.     AX = 4A11h
  1521.     BX = 0001h
  1522.     DL = drive number (0=A:)
  1523. Return: AX = status (see also #1992)
  1524.         0000h successful
  1525.         if DL was compressed drive,
  1526.             BL = host drive (bit 7 set if drive is compressed)
  1527.         else if DL was host drive,
  1528.             BL = compressed drive
  1529.         else
  1530.             BL = specified drive (if available for DoubleSpace)
  1531.         BH = DoubleSpace sequence number
  1532.         other error code (0101h) (see #1992)
  1533.         apparently never returned for the MS-DOS 6.2 DoubleSpace
  1534. Note:    the compressed volume file for the specified compressed drive is
  1535.       host:\DBLSPACE.sequence
  1536. SeeAlso: AX=4A11h/BX=0000h
  1537.  
  1538. (Table 1992)
  1539. Values for DBLSPACE function status:
  1540.  0000h    successful
  1541.  0100h    bad function
  1542.  0101h    invalid drive
  1543.  0102h    not a compressed drive
  1544.  0103h    drive already swapped
  1545.  0104h    drive not swapped
  1546. --------k-2F4A11BX0002-----------------------
  1547. INT 2F - DBLSPACE.BIN - "Swap Drive" - SWAP DRIVE LETTERS OF CVF AND HOST DRIVE
  1548.     AX = 4A11h
  1549.     BX = 0002h
  1550.     DL = drive number (0=A:) of compressed drive to swap with its host
  1551. Return: AX = status (0000h,0101h,0102h,0103h) (see #1992)
  1552. Note:    this function is intended for use by DBLSPACE.EXE only
  1553. SeeAlso: AX=4A11h/BX=0000h
  1554. --------k-2F4A11BX0003-----------------------
  1555. INT 2F - DBLSPACE.BIN - "DSGetEntryPoints" - GET DEVICE DRIVER ENTRY POINTS
  1556.     AX = 4A11h
  1557.     BX = 0003h
  1558.     CL = drive number (0=A:) of compressed drive
  1559. Return: CL = FFh on error (not compressed drive)
  1560.     CL <> FFh driver unit number of host drive
  1561.         ES:SI -> device driver's strategy routine
  1562.         ES:DI -> device driver's interrupt routine
  1563.     BX destroyed
  1564. Note:    in conjunction with subfunction 0004h, this call allows disk caches
  1565.       like SMARTDRV to apply a device driver wrapper to DoubleSpaced
  1566.       drives just like SMARTDRV applies to regular block devices
  1567. SeeAlso: AX=4A10h/BX=0007h,AX=4A11h/BX=0000h,AX=4A11h/BX=0004h
  1568. --------k-2F4A11BX0004-----------------------
  1569. INT 2F - DBLSPACE.BIN - "DSSetEntryPoints" - SET DEVICE DRIVER ENTRY POINTS
  1570.     AX = 4A11h
  1571.     BX = 0004h
  1572.     CL = drive number (0=A:) of compressed drive
  1573.     DL = unit number for new driver entry points
  1574.     DH = 00h
  1575.     ES:SI -> device driver strategy routine to call for drive
  1576.     ES:DI -> device driver interrupt routine to call for drive
  1577. Return: CL = FFh on error (not a compressed drive)
  1578.     BX destroyed
  1579. Program: DBLSPACE.BIN is the resident driver for DoubleSpace, the
  1580.       disk-compression software bundled with MS-DOS 6.0
  1581. Note:    in conjunction with subfunction 0003h, this call allows disk caches
  1582.       like SMARTDRV to apply a device driver wrapper to DoubleSpaced
  1583.       drives just like SMARTDRV applies to regular block devices
  1584. SeeAlso: AX=4A10h/BX=0007h,AX=4A11h/BX=0000h,AX=4A11h/BX=0003h
  1585. --------k-2F4A11BX0005-----------------------
  1586. INT 2F - DBLSPACE.BIN - "ActivateDrive" - MOUNT COMPRESSED DRIVE
  1587.     AX = 4A11h
  1588.     BX = 0005h
  1589.     DL = drive number (0=A:) to assign to new drive
  1590.     ES:SI -> activation record (see #1993)
  1591. Return: status returned in activation record (see #1994)
  1592. SeeAlso: AX=4A11h/BX=0000h,AX=4A11h/BX=0006h
  1593.  
  1594. Format of DBLSPACE activation record:
  1595. Offset    Size    Description    (Table 1993)
  1596.  00h  2 BYTEs    signature "MD" (4Dh 44h)
  1597.  02h    BYTE    4Dh ('M') mount command
  1598.  03h    BYTE    error code (set to FFh before calling) (see #1994)
  1599.  04h    BYTE    host drive number (0=A:)
  1600.  05h    ???    DISK_UNIT structure (not documented)
  1601.  
  1602. (Table 1994)
  1603. Values for DBLSPACE Mount error code:
  1604.  00h    successful
  1605.  01h    drive letter not available for DoubleSpace
  1606.  02h    drive letter already in use
  1607.  03h    no more disk units (increase MaxRemovableDrives in .INI)
  1608.  09h    CVF too fragmented
  1609. --------k-2F4A11BX0006-----------------------
  1610. INT 2F - DBLSPACE.BIN - "DeactivateDrive" - UNMOUNT COMPRESSED DRIVE
  1611.     AX = 4A11h
  1612.     BX = 0006h
  1613.     DL = drive number (0=A:) to unmount
  1614. Return: AX = status (0000h,0102h) (see #1992)
  1615. SeeAlso: AX=4A11h/BX=0000h,AX=4A11h/BX=0005h
  1616. --------k-2F4A11BX0007-----------------------
  1617. INT 2F - DBLSPACE.BIN - "GetDriveSpace" - GET SPACE AVAIL ON COMPRESSED DRIVE
  1618.     AX = 4A11h
  1619.     BX = 0007h
  1620.     DL = compressed drive number (0=A:)
  1621. Return: AX = status (0000h,0102h) (see also #1992)
  1622.         0000h successful
  1623.         DS:SI -> free space record (see #1995)
  1624. Program: DBLSPACE.BIN is the resident driver for DoubleSpace, the
  1625.       disk-compression software bundled with MS-DOS 6.0
  1626. SeeAlso: AX=4A11h/BX=0000h,AX=4A11h/BX=0008h
  1627.  
  1628. Format of DBLSPACE free space record:
  1629. Offset    Size    Description    (Table 1995)
  1630.  00h    DWORD    total number of sectors in drive's sector heap
  1631.  04h    DWORD    number of free sectors in drive's sector heap
  1632. --------k-2F4A11BX0008-----------------------
  1633. INT 2F - DBLSPACE.BIN - "GetFileFragmentSpace" - GET SIZE OF FRAGMENT HEAP
  1634.     AX = 4A11h
  1635.     BX = 0008h
  1636.     DL = compressed drive number (0=A:)
  1637. Return: AX = status (0000h,0102h) (see also #1992)
  1638.         0000h successful
  1639.         BX = maximum entries in File Fragment heap
  1640.         CX = available entries in File Fragment heap
  1641. SeeAlso: AX=4A11h/BX=0000h,AX=4A11h/BX=0007h,AX=4A11h/BX=0009h
  1642. --------k-2F4A11BX0009-----------------------
  1643. INT 2F - DBLSPACE.BIN - "GetExtraInfo" - DETERMINE NUMBER OF DISK_UNIT STRUCTS
  1644.     AX = 4A11h
  1645.     BX = 0009h
  1646.     DL = compressed drive number (0=A:)
  1647. Return: AX = status (see also #1992)
  1648.         0000h successful
  1649.         CL = number of DISK_UNIT structures allocated
  1650.               (see AX=4A11h/BX=0005h)
  1651.         CH = DoubleGuard enabled-checks bitflags in bits 6-0 (DOS 6.2)
  1652. Note:    the DoubleGuard checks are enabled or disabled as a block by the
  1653.       DoubleGuard= line in DBLSPACE.INI; they may be individually set with
  1654.       the CheckSum= line.
  1655. SeeAlso: AX=4A11h/BX=0000h,AX=4A11h/BX=0008h
  1656. --------k-2F4A11BX000A-----------------------
  1657. INT 2F - DBLSPACE.BIN v6.2 - SET AUTOMOUNT DRIVES
  1658.     AX = 4A11h
  1659.     BX = 000Ah
  1660.     CX:DX = bitmask of drives on which to enable AutoMount
  1661.         (DX bit 0 = A:, CX bit 0 = P:, etc.)
  1662. Return: AX = 0000h if supported
  1663.         CX:DX = old mask or 0000h:0000h on error
  1664.     BX destroyed
  1665. SeeAlso: AX=4A11h/BX=000Bh
  1666. --------k-2F4A11BX000B-----------------------
  1667. INT 2F - DBLSPACE.BIN v6.2 - GET AUTOMOUNT DRIVES
  1668.     AX = 4A11h
  1669.     BX = 000Bh
  1670. Return: AX = 0000h if supported
  1671.         CX:DX = mask of drives with AutoMount enabled
  1672.         0000h:0000h on error
  1673.     BX destroyed
  1674. SeeAlso: AX=4A11h/BX=000Ah
  1675. --------k-2F4A11BXFFFE-----------------------
  1676. INT 2F U - DBLSPACE.BIN - RELOCATE
  1677.     AX = 4A11h
  1678.     BX = FFFEh
  1679.     ES = segment to which to relocate DBLSPACE.BIN
  1680. Return: ???
  1681. Notes:    called by DBLSPACE.SYS to relocate DBLSPACE.BIN to its final position
  1682.       in memory
  1683.     this function also unhooks and discards the code providing this
  1684.       function and AX=4A11h/BX=FFFFh
  1685.     this function is also supported by the version of SuperStor bundled
  1686.       with IBM DOS 6.x and "preloading" versions of Stacker
  1687. SeeAlso: AX=4A11h/BX=FFFFh
  1688. --------k-2F4A11BXFFFF-----------------------
  1689. INT 2F U - DBLSPACE.BIN - GET RELOCATION SIZE
  1690.     AX = 4A11h
  1691.     BX = FFFFh
  1692. Return: AX = number of paragraphs needed by DBLSPACE.BIN
  1693. Note:    used by DBLSPACE.SYS to relocate the DBLSPACE driver to its final
  1694.       position in memory
  1695.     this function is also supported by the version of SuperStor bundled
  1696.       with IBM DOS 6.x and "preloading" versions of Stacker
  1697. SeeAlso: AX=4A11h/BX=0000h,AX=4A11h/BX=FFFEh
  1698. --------k-2F4A12CX4D52-----------------------
  1699. INT 2F - Microsoft Realtime Compression Interface (MRCI) - RAM-BASED SERVER
  1700.     AX = 4A12h
  1701.     CX = 4D52h ("MR")
  1702.     DX = 4349h ("CI")
  1703. Return: CX = 4943h ("IC") if installed
  1704.     DX = 524Dh ("RM") if installed
  1705.         ES:DI -> MRCINFO structure (see #0578 at INT 1A/AX=B001h)
  1706. Note:    this call is functionally identical to INT 1A/AX=B001h, but should be
  1707.       called first, as the latter call is used for the first, ROM-based
  1708.       MRCI server, while this call is used for RAM-based servers which
  1709.       may be partially or entirely replacing a prior server
  1710. SeeAlso: AX=4A12h/CX=5354h,INT 1A/AX=B001h
  1711. --------k-2F4A12CX5354-----------------------
  1712. INT 2F - Stacker 4 LZS Compression Interface (LZSAPI)
  1713.     AX = 4A12h
  1714.     CX = 5354h ("ST")
  1715.     DX = 4143h ("AC")
  1716. Return: AX = 4F4Bh ("OK") if installed
  1717.     CX = 7374h ("st") if installed
  1718.     DX = 6163h ("ac") if installed
  1719.         ES:DI -> entry point in LZSAPI server (usually, driver
  1720.               STACKER.COM) containing far address of an actual
  1721.               LZSINFO structure (see #1996)
  1722. SeeAlso: AX=4A12h/CX=4D52h,INT 25/AX=CDCDh
  1723.  
  1724. Format of LZSINFO structure:
  1725. Offset    Size    Description    (Table 1996)
  1726.  00h  6 BYTEs    signature "LZSAPI"
  1727.  06h    WORD    server version (200 (0C8h) for Stacker 4 and Stacker Anywhere)
  1728.  08h  4 BYTEs    vendor signature
  1729.         "STAC" = Stac Electronics, Inc.
  1730.  0Ch  6 BYTEs    ???
  1731.  12h    WORD    bit flags: server status/capabilities (see #1997)
  1732.  14h    DWORD    -> Stacker 3.X-compatible compression procedure
  1733.  18h    DWORD    -> Stacker 3.X-compatible decompression procedure
  1734.  1Ch  4 BYTEs    reserved (always set to 0)
  1735.  20h    DWORD    -> incremental Stacker 3.x-compatible compression procedure
  1736.           (see #1998)
  1737.  24h  4 BYTEs    ???
  1738.  28h    DWORD    -> incremental Stacker 3.x-compatible decompression procedure
  1739.           (see #1999)
  1740.  2Ch  4    BYTES    ???
  1741.  30h    DWORD    -> new (Stacker 4) compression procedure
  1742.  34h  4 BYTEs    ???
  1743.  38h    DWORD    -> new (Stacker 4) decompression procedure
  1744. Notes:    Stacker 4 usally keeps two different data-compression algorithms in
  1745.       memory (preferably in XMA):
  1746.         1) new (Stacker 4) data compression algorithm (4K LZ77 with hashing
  1747.           and static Huffman encoding), and
  1748.         2) old (Stacker 3.x-compatible) one (2K LZ77 with hashing), which
  1749.           is used to work with STACVOL files created under older
  1750.           versions of Stacker.
  1751.  
  1752. Bitfields for LZSAPI capabilities:
  1753. Bit(s)    Description    (Table 1997)
  1754.  0    ???
  1755.  1    busy/error flag
  1756.  2-10    ???
  1757.  11    maximum compressor/decompressor presented
  1758.  
  1759. (Table 1998)
  1760. Call Stacker 3.x-style non-incremental functions with:
  1761.     STACK:    DWORD    return address for compress/decompress procedure
  1762.         WORD    compression algorithm parameters (see #2000)
  1763.         WORD    size of destination buffer (in bytes)
  1764.         DWORD    address of destination buffer
  1765.         WORD    size of source buffer (in bytes)
  1766.         DWORD    address of source buffer
  1767. Return: (compression/decompression procedure)
  1768.     AX = size of resulting data in destination buffer
  1769.         0000h if error (either destination buffer too small or error in
  1770.           compressed data)
  1771.  
  1772. (Table 1999)
  1773. Call Stacker 4-style incremental procedures with:
  1774.     STACK:    DWORD    return address for compr./decompr. procedure
  1775.         DWORD    address of LZSSWAP structure (see #2001)
  1776.             if 0000:0000, procedure uses non-incremental technique
  1777.         WORD    compression algorithm parameters (see #2000)
  1778.         WORD    size of destination buffer (in bytes)
  1779.         DWORD    address of destination buffer
  1780.         WORD    size of source buffer (in bytes)
  1781.         DWORD    address of source buffer
  1782.  
  1783. (Table 2000)
  1784. Values for Compression algorithm parameters:
  1785. Value    Compression level (/P=xx parameter)
  1786.  07F9h      1
  1787.  0621h      2
  1788.  0625h      3
  1789.  0665h      4
  1790.  0669h      5
  1791.  06E9h      6
  1792.  06EDh      7
  1793.  07D1h      8
  1794.  07D9h      9
  1795.  
  1796. Format of LZSSWAP structure:
  1797. Offset    Size    Description    (Table 2001)
  1798.  00h  2 BYTEs    signature "CS"
  1799.  02h  6 BYTEs    reserved
  1800.  08h    DWORD    address of destination buffer swapping procedure
  1801.  0Ch    DWORD    address of stack swapping procedure
  1802. --------k-2F4A13-----------------------------
  1803. INT 2F U - DBLSPACE.BIN - GET ??? ENTRY POINTS
  1804.     AX = 4A13h
  1805. Return: AX = 134Ah if supported
  1806.         ES:BX -> entry point record (see #2002)
  1807. SeeAlso: AX=4A11h/BX=0000h
  1808.  
  1809. Format of DBLSPACE entry point record:
  1810. Offset    Size    Description    (Table 2002)
  1811.  00h    DWORD    pointer to FAR function for ???
  1812.  04h  5 BYTEs    FAR JUMP instruction to ???
  1813. --------N-2F4B-------------------------------
  1814. INT 2F - LAN Manager 2.0 DOS Enh NETWKSTA.EXE - NETWORK WORKSTATION REDIRECTOR
  1815.     AH = 4Bh
  1816.     ???
  1817. Return: ???
  1818. Note:    LAN Manager enhanced mode adds features beyond the standard redirector
  1819.       file/printer services
  1820. SeeAlso: AX=118Ah,AX=4100h,AH=42h
  1821. --------T-2F4B01-----------------------------
  1822. INT 2F C - DOS 5+ TASK SWITCHER - BUILD CALLOUT CHAIN
  1823.     AX = 4B01h
  1824.     CX:DX -> task switcher entry point (see #2005)
  1825.     ES:BX = 0000h:0000h
  1826. Return: ES:BX -> callback info structure (see #2003) or 0000h:0000h
  1827. Notes:    called by the task switcher
  1828.     this function is hooked by clients which require notification of task
  1829.       switcher activities; the call must first be passed on to the prior
  1830.       handler with registers unchanged using a simulated interrupt.     On
  1831.       return, the client must build a callback info structure and store
  1832.       the returned ES:BX in the "next" field, then return the address of
  1833.       its own callback info structure.
  1834.     a client program must add itself to the notification chain if it
  1835.       provides services to other programs; before terminating, it must
  1836.       remove itself from the chain by calling the task switcher's entry
  1837.       point with AX=0005h (see #2005)
  1838.     the task switcher entry point should not be saved, as it is subject to
  1839.       change and will be provided on any notification call
  1840.     the Windows 3.1 Standard Mode supports this API
  1841. SeeAlso: AX=160Bh,AX=4B02h
  1842.  
  1843. Format of task switcher callback info structure:
  1844. Offset    Size    Description    (Table 2003)
  1845.  00h    DWORD    pointer to next callback info structure
  1846.  04h    DWORD    pointer to notification function (see #2004)
  1847.  08h    DWORD    reserved
  1848.  0Ch    DWORD    address of zero-terminated list of API info structures
  1849.         (see #2007)
  1850.  
  1851. (Table 2004)
  1852. Values task switcher notification function is called with:
  1853.     AX = function
  1854.         0000h switcher initialization
  1855.         Return: AX = status
  1856.                 0000h if OK to load
  1857.                 nonzero to abort task switcher
  1858.         0001h query suspend
  1859.         BX = session ID
  1860.         Return: AX = status
  1861.                 0000h if OK to switch session
  1862.                 0001h if not
  1863.         0002h suspend session
  1864.         BX = session ID
  1865.         interrupts disabled
  1866.         Return: AX = 0000h if OK to switch session
  1867.                = 0001h if not
  1868.         0003h activate session
  1869.         BX = session ID
  1870.         CX = session status flags
  1871.             bit 0: set if first activation of session
  1872.             bits 1-15: reserved (0)
  1873.         interrupts disabled
  1874.         Return: AX = 0000h
  1875.         0004h session active
  1876.         BX = session ID
  1877.         CX = session status flags
  1878.             bit 0: set if first activation of session
  1879.             bits 1-15: reserved (0)
  1880.         Return: AX = 0000h
  1881.         0005h create session
  1882.         BX = session ID
  1883.         Return: AX = 0000h if OK to create session
  1884.                = 0001h if not
  1885.         0006h destroy session
  1886.         BX = session ID
  1887.         Return: AX = 0000h
  1888.         0007h switcher termination
  1889.         BX = flags
  1890.             bit 0: set if calling switcher is only switcher loaded
  1891.             bits 1-15: reserved (0)
  1892.         Return: AX = 0000h
  1893.     ES:DI -> task switcher entry point (see #2005)
  1894. Notes:    function 0000h is generally called by the program which controls or
  1895.       invokes the task switcher, rather than by the task switcher itself;
  1896.       the entry point supplied to this function is not necessarily the
  1897.       entry point to the task switcher itself, and may be 0000h:0000h.  If
  1898.       any client indicates that loading is not possible, all clients will
  1899.       be called with function 0007h; thus it is possible for a client to
  1900.       receive a termination notice without a corresponding initialization
  1901.       notice.
  1902.     except for functions 0002h and 0003h, the notification handler is
  1903.       called with interrupts enabled and may make any INT 21h function
  1904.       call; interrupts must not be enabled in functions 0002h and 0003h
  1905.     function 0007h may be called with ES:DI = 0000h:0000h if the entry
  1906.       point is no longer valid
  1907. --------T-2F4B02BX0000-----------------------
  1908. INT 2F - DOS 5+ TASK SWITCHER - INSTALLATION CHECK
  1909.     AX = 4B02h
  1910.     BX = 0000h
  1911.     ES:DI = 0000h:0000h
  1912. Return: ES:DI = 0000h:0000h if task switcher not loaded
  1913.     ES:DI -> task switcher entry point (see #2005) if loaded
  1914.         AX = 0000h
  1915. Notes:    the returned entry point is that for the most-recently loaded task
  1916.       switcher; the entry points for prior task switchers may be determined
  1917.       with the "get version" call (see #2005)
  1918.     this function is supported by PC Tools v8+ CPTASK
  1919. SeeAlso: AX=4A05h,AX=4B03h
  1920.  
  1921. (Table 2005)
  1922. Call task switcher entry point with:
  1923.     AX = 0000h get version
  1924.         Return: CF clear if successful
  1925.                 AX = 0000h
  1926.                 ES:BX -> task switcher version struct (see #2006)
  1927.             CF set if unsupported function
  1928.     AX = 0001h test memory region
  1929.         ES:DI -> first byte to be tested
  1930.         CX = size of region to test
  1931.         Return: CF clear if successful
  1932.                 AX = memory type of tested region
  1933.                 0000h global
  1934.                 0001h global and local
  1935.                 0002h local (replaced on session switch)
  1936.             CF set if unsupported function
  1937.     AX = 0002h suspend switcher
  1938.         ES:DI -> new task switcher's entry point
  1939.         Return: CF clear if successful
  1940.                 AX = state
  1941.                 0000h switcher has been suspended
  1942.                 0001h switcher not suspended, new switcher must
  1943.                     abort
  1944.                 0002h switcher not suspended, but new switcher
  1945.                     may run anyway
  1946.             CF set if unsupported function
  1947.     AX = 0003h resume switcher
  1948.         ES:DI -> new task switcher's entry point
  1949.         Return: CF clear if successful
  1950.                 AX = 0000h
  1951.             CF set if unsupported function
  1952.     AX = 0004h hook notification chain
  1953.         ES:DI -> callback info structure to be added to chain
  1954.               (see #2003)
  1955.         Return: CF clear if successful
  1956.                 AX = 0000h
  1957.             CF set if unsupported function
  1958.     AX = 0005h unhook notification chain
  1959.         ES:DI -> callback info structure to be removed from chain
  1960.               (see #2003)
  1961.         Return: CF clear if successful
  1962.                 AX = 0000h
  1963.             CF set if unsupported function
  1964.     AX = 0006h query API support
  1965.         BX = asynchronous API identifier
  1966.         Return: CF clear if successful
  1967.                 AX = 0000h
  1968.                 ES:BX -> API info structure (see #2007) for the
  1969.                       client which provides the highest
  1970.                       level of API support
  1971.             CF set if unsupported function
  1972.  
  1973. Format of task switcher version structure:
  1974. Offset    Size    Description    (Table 2006)
  1975.  00h    WORD    major version of supported protocol  (current protocol is 1.0)
  1976.  02h    WORD    minor version of supported protocol
  1977.  04h    WORD    major version of task switcher
  1978.  06h    WORD    minor version of task switcher
  1979.  08h    WORD    task switcher ID (see AX=4B03h)
  1980.  0Ah    WORD    operation flags
  1981.         bit 0: set if task switcher disabled
  1982.         bits 1-15: reserved (0)
  1983.  0Ch    DWORD    pointer to ASCIZ task switcher name
  1984.         ("MS-DOS Shell Task Switcher" for DOSSHELL task switcher)
  1985.  10h    DWORD    pointer to previous task switcher's entry point or 0000h:0000h
  1986.  
  1987. Format of API info structure:
  1988. Offset    Size    Description    (Table 2007)
  1989.  00h    WORD    size of structure in bytes (000Ah)
  1990.  02h    WORD    API identifier
  1991.         0001h NetBIOS
  1992.         0002h 802.2
  1993.         0003h TCP/IP
  1994.         0004h LAN Manager named pipes
  1995.         0005h Novell NetWare IPX
  1996.  04h    WORD    major version \ of highest version of API for which the support
  1997.  06h    WORD    minor version / level specified in the next field is provided
  1998.  08h    WORD    support level
  1999.         0001h minimal support
  2000.         0002h API-level support
  2001.         0003h switcher compatibility
  2002.         0004h seamless compatibility
  2003. --------T-2F4B03-----------------------------
  2004. INT 2F - DOS 5+ TASK SWITCHER - ALLOCATE SWITCHER ID
  2005.     AX = 4B03h
  2006.     ES:DI -> task switcher entry point (see #2005)
  2007. Return: AX = 0000h
  2008.     BX = switcher ID (0001h-000Fh), or 0000h if no more available
  2009. Notes:    if a task switcher has determined that it is the first to be loaded, it
  2010.       must allocate an identifier for itself and provide this function to
  2011.       all subsequent task switchers; if it is not the first to be loaded,
  2012.       it must call this function to allocate an ID.     The switcher ID is
  2013.       used as the high four bits of all session identifiers to ensure
  2014.       unique session IDs.
  2015.     if no more switcher IDs are available, the new task switcher making the
  2016.       call must terminate or disable itself
  2017.     the task switcher providing the identifiers may call the new task
  2018.       switcher's entry point as needed
  2019.     this call is available from within DOSSHELL even if the task switcher
  2020.       is not installed
  2021.     this function is supported by PC Tools v8+ CPTASK, but appears to
  2022.       always return an ID of 0000h
  2023. SeeAlso: AX=4B02h,AX=4B04h
  2024. --------T-2F4B04-----------------------------
  2025. INT 2F - DOS 5+ TASK SWITCHER - FREE SWITCHER ID
  2026.     AX = 4B04h
  2027.     BX = switcher ID
  2028.     ES:DI -> task switcher entry point (see #2005)
  2029. Return: AX = 0000h
  2030.     BX = status
  2031.         0000h successful
  2032.         other error (invalid ID or ID not allocated)
  2033. Notes:    called by a task switcher when it exits, unless it was the first loaded
  2034.       and is providing the support for AX=4B03h and AX=4B04h
  2035.     the task switcher providing the identifiers may call the terminating
  2036.       task switcher's entry point as needed
  2037.     this call is available from within DOSSHELL even if the task switcher
  2038.       is not installed
  2039.     this call is supported by PC Tools v8+ CPTASK, but appears to return
  2040.       sucessfully no matter which ID is given
  2041. SeeAlso: AX=4B02h,AX=4B03h
  2042. --------T-2F4B05-----------------------------
  2043. INT 2F C - DOS 5+ TASK SWITCHER - IDENTIFY INSTANCE DATA
  2044.     AX = 4B05h
  2045.     ES:BX = 0000h:0000h
  2046.     CX:DX -> task switcher entry point (see #2005)
  2047. Return: ES:BX -> startup info structure (see #2008) or 0000h:0000h
  2048. Notes:    called by task switcher
  2049.     clients with instance data should hook this call, pass it through to
  2050.       the previous handler with unchanged registers using a simulated
  2051.       interrupt.  On return, the client should create a startup info
  2052.       structure (see #2008), store the returned ES:BX in the "next"
  2053.       field, and return the address of the created structure in ES:BX
  2054.     all MS-DOS function calls are available from within this call
  2055. SeeAlso: AX=1605h,AX=160Bh,AX=4B02h
  2056.  
  2057. Format of task switcher startup info structure:
  2058. Offset    Size    Description    (Table 2008)
  2059.  00h  2 BYTEs    major, minor version of info structure (03h,00h)
  2060.  02h    DWORD    pointer to next startup info structure or 0000h:0000h
  2061.  06h    DWORD    0000h:0000h (ignored)
  2062.  0Ah    DWORD    ignored
  2063.  0Eh    DWORD    pointer to instance data records (see #2009)
  2064.  
  2065. Format of one instance data record in array:
  2066. Offset    Size    Description    (Table 2009)
  2067.  00h    DWORD    address of instance data (end of array if 0000h:0000h)
  2068.  04h    WORD    size of instance data
  2069. --------W-2F4B06-----------------------------
  2070. INT 2F - MS Windows - WIN.COM - GET ??? POINTER TO WIN.COM
  2071.     AX = 4B06h
  2072. Return:    AX = 0000h
  2073.     ES:BX -> ??? function in WIN.COM
  2074. Note:    the entry point is called with
  2075.         AX = 0001h or 0003h
  2076.         BX = ???
  2077. SeeAlso: AX=4B80h
  2078. --------W-2F4B20-----------------------------
  2079. INT 2F - MS Windows 3 - WIN.COM - SET PROGRAM TO EXECUTE ON EXIT
  2080.     AX = 4B20h
  2081. Return: AX = 0000h if successful
  2082.         DX:CX -> 256-byte buffer for pathname and commandline (see #2010)
  2083. Note:    when the Windows function ExitWindows is called with an exit code of
  2084.       44h, WIN.COM executes the program specified in the returned buffer
  2085.       and then restarts Windows
  2086.  
  2087. Format of WIN.COM buffer:
  2088. Offset    Size    Description    (Table 2010)
  2089.  00h 128 BYTEs    ASCIZ pathname of program to execute
  2090.  80h 128 BYTEs    commandline for program
  2091. --------W-2F4B80-----------------------------
  2092. INT 2F - MS Windows - WSWAP.EXE - RESET INTERNAL VARIABLES
  2093.     AX = 4B80h
  2094. Return: nothing
  2095. Note:    called by WINOLDAP.MOD
  2096. SeeAlso: AX=4B06h
  2097. --------p-2F4C-------------------------------
  2098. INT 2F U - Advanced Power Management
  2099.     AH = 4Ch
  2100.     AL = function
  2101.         00h version check
  2102.         01h suspend system requested
  2103.         FFh suspend/resume battery notification
  2104.     ???
  2105. Return: ???
  2106. ----------2F4D-------------------------------
  2107. INT 2F U - ???
  2108.     AH = 4Dh
  2109.     ???
  2110. Return: ???
  2111. Note:    reportedly called by Kana Kanji Converter and MSKK
  2112. --------N-2F4E53BL00-------------------------
  2113. INT 2F - SilverNET v2+ - INSTALLATION CHECK
  2114.     AX = 4E53h ("NS")
  2115.     BL = 00h (function "installation check")
  2116.     BH = module ID (see #2011)
  2117. Return: AX = 0000h if specified module installed
  2118.     BX = 4E53h if installed
  2119. Program: SilverNET is an SMB-compatible peer-to-peer NOS for DOS or
  2120.       Windows systems, by Net-Source, Inc. of Santa Clara, CA.
  2121. SeeAlso: AX=4E53h/BL=01h,AX=4E53h/BL=02h,AX=B800h,AX=B809h
  2122.  
  2123. (Table 2011)
  2124. Values for SilverNET module ID:
  2125.  01h    SilverCACHE
  2126.  02h    Workstation
  2127.  03h    NetBIOS
  2128.  04h    Peer
  2129.  20h    NS Share
  2130.  80h    NetWare help TSR
  2131. --------N-2F4E53BL01-------------------------
  2132. INT 2F - SilverNET - GET RUNTIME PARAMETER
  2133.     AX = 4E53h ("NS")
  2134.     BL = 01h (function "get runtime parameter")
  2135.     BH = module ID (see #2011)
  2136.     CX = parameter index (see #2012,#2014,#2015)
  2137. Return: AX = WORD value at specified index (see #2013)
  2138. Desc:    retrieve a word of data from the specified SilverNET module
  2139.  
  2140. (Table 2012)
  2141. Values for SilverNET Peer parameter index (* = read-only):
  2142.  00h *    maximum outstanding SMB buffers
  2143.  02h *    maximum logged-in nodes
  2144.  04h *    number of shareable resources
  2145.  06h *    number of characters to print per time slice
  2146.  08h *    number of printers that can be shared
  2147.  0Ah *    number of nodes logged in
  2148.  0Ch *    number of files to allow opened
  2149.  0Eh    how fast to despool (/PSLICE)
  2150.  10h    audit flag
  2151.  24h *    far pointer to resource table (each resource is 96 bytes in length)
  2152.  32h *    far pointer to SFT (internal if SilverNET files > CONFIG.SYS files,
  2153.     else DOS SFT)
  2154.  36h    spool flags (see #2013)
  2155.  
  2156. Bitfields for spool flags:
  2157. Bit(s)    Description    (Table 2013)
  2158.  0    LPT1 needs despooling
  2159.  1    LPT2 needs despooling
  2160.  2    LPT2 needs despooling
  2161.  4    COM1 needs despooling
  2162.  5    COM2 needs despooling
  2163.  6    COM3 needs despooling
  2164.  
  2165. (Table 2014)
  2166. Values for NS Share parameter index (* = read-only):
  2167.  00h    version number (high byte = minor, low byte = major)
  2168.  10h *    segment of first lock record (other records in consecutive paragraphs)
  2169.     (if PSP field = 0000h, lock record is free)
  2170.  12h *    maximum possible number of lock records
  2171.  14h *    starting segment of sharing buffer
  2172.     (NS Share's sharing records are identical to DOS SHARE except that
  2173.       fields which are normally offsets into SHARE are segment numbers)
  2174.  18h *    size of sharing buffer in paragraphs
  2175.  1Ah *    total free paragraphs in sharing buffer
  2176.  1Ch *    current number of shared files
  2177.  1Eh *    current number of locked records
  2178.  
  2179. (Table 2015)
  2180. Values for Workstation parameter index (* = read-only):
  2181.  00h    version number (high byte = minor, low byte = major)
  2182.  02h *    size of each network buffer for file operations
  2183.  04h *    number of redirector file buffers
  2184.  06h *    size of each print cache buffer
  2185.  08h *    number of network LPT printers
  2186.  0Ch    flush time in ticks (idle time on network printer before flushing)
  2187.  0Eh    (16 WORDs) last active time for each printer
  2188.  2Eh *    stub segment if program split into two parts
  2189.  60h    receive name number for datagram listens
  2190.  62h *    18-byte machine name
  2191.  74h *    LASTDRIVE (01h = A:, etc.)
  2192.  7Ch    row number of message box on screen
  2193.  7Eh    message time in clock ticks
  2194.  82h *    number of network adapters in use
  2195.  84h    station ID broadcast flag (never set on redirectors)
  2196.  96h *    NetBIOS names left
  2197.  98h *    NCBs left
  2198.  9Ah *    sessions left
  2199.  A2h *    total number of network printers (LPT+COM)
  2200.  A4h *    number of serial network printers
  2201.  A8h *    segment containing file cache buffers
  2202.  AAh *    segment containing print cache buffers
  2203.  ACh *    bytes remaining free in HMA before program loaded
  2204.  AEh *    start of free memory in HMA
  2205.  B2h *    flag: using HMA
  2206. --------N-2F4E53BL02-------------------------
  2207. INT 2F - SilverNET - SET RUNTIME PARAMETERS
  2208.     AX = 4E53h ("NS")
  2209.     BL = 02h (function "set runtime parameters")
  2210.     BH = module ID (see #2011)
  2211.     CX = parameter index (see #2014,#2015)
  2212.     DX = new value for specified parameter
  2213. Desc:    set a WORD value in the specified SilverNET module
  2214. Note:    not all indexed parameters are writable; modifying a read-only
  2215.       parameter can result in system crashes
  2216. SeeAlso: AX=4E53h/BL=00h,AX=4E53h/BL=01h
  2217. --------N-2F5100-----------------------------
  2218. INT 2F U - ODIHLP.EXE - INSTALLATION CHECK
  2219.     AX = 5100h
  2220. Return: AL = FFh if installed
  2221.         BX = 0000h
  2222.         DX:SI -> signature string "ODI$HLP$"
  2223. Program: ODIHLP is a real-mode helper allowing the Windows for Workgroups 3.11
  2224.       protected-mode NDIS3 protocol to work with real-mode ODI drivers
  2225.       and LSL.COM
  2226. Note:    the returned signature string might be the first field of a structure
  2227. SeeAlso: AX=C000h"LSL.COM"
  2228. --------k-2F5200-----------------------------
  2229. INT 2F - JAM.SYS v1.10+ - "GetVersion" - INSTALLATION CHECK
  2230.     AX = 5200h
  2231. Return: AH = 80h (successful) if installed
  2232.     BX = internal JAM.SYS version number
  2233.     CX = size of JAMINFO structure (see #2016,#2017)
  2234.     DX = JAM.SYS segment address
  2235. Program: JAM.SYS is a main component of the JAM Real-Time Data Compression
  2236.       Utilities by George A. Reznik and friends (JAM Software).
  2237. SeeAlso: AX=5201h
  2238.  
  2239. Format of JAMINFO v1.10 structure:
  2240. Offset    Size    Description    (Table 2016)
  2241.  00h 25 BYTEs    extended BIOS parameter block (BPB)
  2242.  19h 11 BYTEs    ???
  2243.  25h    DWORD    total number of sectors in JAM archive file
  2244.         (size of compressed data area)
  2245.  29h    BYTE    flags (see #2018)
  2246.  2Ah 127 BYTEs    full JAM archive file name
  2247.  A9h    WORD    the number of fragments in archive file
  2248.  ABh 96 BYTEs    archive file fragmentation list -
  2249.         array of 16 FRAGMENT structures (see #2019)
  2250. 10Bh    DWORD    address of the host-drive DPB (Drive Parameter Block)
  2251. 10Fh    DWORD    number of free sectors in JAM archive file
  2252. 113h    WORD    device status word (see #2020)
  2253. SeeAlso: #2017
  2254.  
  2255. Format of JAMINFO v1.20 structure:
  2256. Offset    Size    Description    (Table 2017)
  2257.  00h 25 BYTEs    extended BIOS parameter block (BPB)
  2258.  19h    BYTE    physical driver number
  2259.  1Ah    BYTE    reserved
  2260.  1Bh    BYTE    extended boot record signature
  2261.  1Ch    DWORD    volume serial number
  2262.  20h 11 BYTEs    volume label
  2263.  2Bh  8 BYTEs    file system ID
  2264.  33h    DWORD    total number of sectors in JAM archive file
  2265.         (size of compressed data area)
  2266.  37h    BYTE    flags (see #2018)
  2267.  38h 128 BYTEs    full JAM archive file name
  2268.  B8h    WORD    the number of fragments in archive file
  2269.  BAh 96 BYTEs    archive file fragmentation list -
  2270.         array of 16 FRAGMENT structures (see #2019)
  2271. 11Ah    DWORD    address of the host-drive DPB (Drive Parameter Block)
  2272. 11Eh    DWORD    number of free sectors in JAM archive file
  2273. 122h    WORD    device status word (see #2020)
  2274. Note:    the first 33h bytes are copied from the archive file's boot sector
  2275. SeeAlso: #2016
  2276.  
  2277. Bitfields for JAMINFO flags:
  2278. Bit(s)    Description    (Table 2018)
  2279.  2-0    reserved
  2280.  3    (v1.20+)
  2281.  4    enable direct write requests (Int 26h, non-DOS requests, etc.)
  2282.  5    read-only mode
  2283.  6    no write-behind caching
  2284.  7    full undelete-compatible allocation strategy
  2285. SeeAlso: #2016,#2017
  2286.  
  2287. Format of JAM FRAGMENT structure:
  2288. Offset    Size    Description    (Table 2019)
  2289.  00h    WORD    starting sector (low word)
  2290.  02h    BYTE    starting sector (high byte)
  2291.  03h    WORD    size of fragment (low word)
  2292.  05h    BYTE    size of fragment (high byte)
  2293. SeeAlso: #2016,#2017
  2294.  
  2295. (Table 2020)
  2296. Values for JAM.SYS status (high byte):
  2297.  00h    successful
  2298.  01h    drive is not a JAM drive
  2299.  02h    drive is already attached
  2300.  03h    archive file cluster size value is larger than driver's one
  2301.  04h    drive is not attached
  2302.  05h    drive is locked
  2303.  06h    drive is not locked
  2304.  07h    bad physical-level request
  2305.  08h    host drive reading/writing error
  2306.  09h    bad entries in JAM descriptor table
  2307.  0Ah    compressed data integrity error
  2308.  0Bh    archive file overflow
  2309.  0Ch    bad DOS request
  2310.  0Dh    incorrect parameters in JAMINFO structure
  2311. Note:    the low byte of the status is the DOS error code for the Host drive
  2312. SeeAlso: #1846 at INT 2F/AX=0802h
  2313. --------k-2F5201-----------------------------
  2314. INT 2F - JAM.SYS v1.10+ - "GetInfo" - GET COMPRESSED DRIVE INFORMATION
  2315.     AX = 5201h
  2316.     DL = compressed drive number (0-default, 1-A:, etc.)
  2317.     DS:BX -> buffer for JAMINFO structure (see #2016,#2017)
  2318. Return: AH = status (00h,01h) (see #2020)
  2319. SeeAlso: AX=5200h
  2320. --------k-2F5202-----------------------------
  2321. INT 2F - JAM.SYS v1.10+ - "Attach" - MOUNT COMPRESSED DRIVE
  2322.     AX = 5202h
  2323.     DL = drive number (0-default, 1-A:, etc.) to attach to the JAM
  2324.           archive file
  2325.     DS:BX -> pointer to JAMINFO structure (see #2016,#2017), which
  2326.           contains parameters of the JAM file to mount, and pointer
  2327.           to the host drive DPB (i.e. DPB of the drive on which the
  2328.           JAM file is located)
  2329. Return: AH = status (00h,02h,03h,08h,09h,0Dh) (see also #2020)
  2330.         03h archive file cluster size value is larger than driver's - not
  2331.           mounted
  2332.         09h bad entries in JAM descriptor table - file mounted read-only
  2333.     AL = host drive error code (see #1846 at INT 2F/AX=0802h)
  2334. SeeAlso: AX=5203h
  2335. --------k-2F5203-----------------------------
  2336. INT 2F - JAM.SYS v1.10+ - "Detach" - UNMOUNT COMPRESSED DRIVE
  2337.     AX = 5203h
  2338.     DL = drive number (0-default, 1-A:, etc.) to detach
  2339. Return: AH = status (00h,01h,04h,05h,08h,09h,0Bh,0Dh) (see #2020)
  2340.     AL = host drive error code (see #1846 at INT 2F/AX=0802h)
  2341. SeeAlso: AX=5202h
  2342. --------k-2F5204-----------------------------
  2343. INT 2F - JAM.SYS v1.10+ - "Lock" - LOCK COMPRESSED DRIVE
  2344.     AX = 5204h
  2345.     DL = drive number (0-default, 1-A:, etc.) to lock
  2346. Return: AH = status (00h,01h,04h,05h,08h,09h,0Bh,0Dh) (see #2020)
  2347.     AL = host drive error code (see #1846 at INT 2F/AX=0802h)
  2348. SeeAlso: AX=5205h, AX=5206h, AX=5207h
  2349. --------k-2F5205-----------------------------
  2350. INT 2F - JAM.SYS v1.10+ - "UnLock" - UNLOCK COMPRESSED DRIVE
  2351.     AX = 5205h
  2352.     DL = drive number (0-default, 1-A:, etc.) to unlock
  2353. Return: AH = status (00h,01h,04h,06h,08h,09h,0Dh) (see #2020)
  2354.     AL = host drive error code (see #1846 at INT 2F/AX=0802h)
  2355. SeeAlso: AX=5204h, AX=5206h, AX=5207h
  2356. Note:    Lock and UnLock functions were added to the JAM API to prevent
  2357.       asynchronous physical-level access (see AX=5206h,AX=5207h) to
  2358.       compressed data on JAM drives. In other words, two or more programs
  2359.       which use JAM API (say, JMAX optimizer and JCHKDSK - disk checker)
  2360.       cannot be run on the same JAM drive simultaneously.
  2361. --------k-2F5206-----------------------------
  2362. INT 2F - JAM.SYS v1.10+ - "Read" - PHYSICAL READ DATA FROM JAM ARCHIVE
  2363.     AX = 5206h
  2364.     DL = drive number (0-default, 1-A:, etc.)
  2365.     DS:BX -> disk transfer packet (see #2021)
  2366. Return: AH = status (00h,01h,04h,06h,07h,08h,0Dh) (see #2020)
  2367.     AL = host drive error code (see #1846 at INT 2F/AX=0802h)
  2368. Program: JAM.SYS is a main component of the JAM Real-Time Data Compression
  2369.       Utilities by George A. Reznik and friends (JAM Software).
  2370. SeeAlso: AX=5207h
  2371.  
  2372. Format of disk transfer packet:
  2373. Offset    Size    Description    (Table 2021)
  2374.  00h    DWORD    sector number
  2375.  04h    WORD    number of sectors to read(write)
  2376.  06h    DWORD    transfer address
  2377. --------k-2F5207-----------------------------
  2378. INT 2F - JAM.SYS v1.10+ - "Write" - PHYSICAL WRITE DATA TO JAM ARCHIVE
  2379.     AX = 5207h
  2380.     DL = drive number (0-default, 1-A:, etc.)
  2381.     DS:BX -> disk transfer packet (see #2021)
  2382. Return: AH = status (00h,01h,04h,06h,07h,08h,0Dh) (see #2020)
  2383.     AL = host drive error code (see #1846 at INT 2F/AX=0802h)
  2384. SeeAlso: AX=5206h
  2385. --------p-2F53-------------------------------
  2386. INT 2F U - POWER.EXE - APM event broadcasting???
  2387.     AH = 53h
  2388.     AL = event???
  2389.         05h CPU idle
  2390.         0Bh PM event broadcast API
  2391. Return: ???
  2392. Note:    called by MS Windows 3.1 POWER.DRV; hooked by MS Mouse driver v8.20+
  2393.       and PC-Cache v8.0
  2394. SeeAlso: AX=530Bh,AH=54h,INT 33/AX=002Fh
  2395. --------p-2F530B-----------------------------
  2396. INT 2F U - ??? (MOUSEPWR.COM, others) - ???
  2397.     AX = 530Bh
  2398.     BX = subfunction
  2399.         0003h ???
  2400.         0004h ???
  2401.     ???
  2402. Return: ???
  2403. Note:    it appears that subfunction 0003h reads or restores the current mouse
  2404.       settings (the MS Mouse driver hooks AX=530Bh), and 0004h might be
  2405.       the converse
  2406. --------p-2F5400-----------------------------
  2407. INT 2F U - POWER.EXE - INSTALLATION CHECK
  2408.     AX = 5400h
  2409. Return: AX = POWER.EXE version (AH = major, AL = minor) if installed
  2410.     BX = 504Dh ("PM")
  2411.     CF clear
  2412. Note:    called by MS Windows 3.1 POWER.DRV
  2413. SeeAlso: AH=53h,AX=5401h,AX=5402h,AX=5481h,AX=5482h
  2414. --------p-2F5401-----------------------------
  2415. INT 2F U - POWER.EXE - GET/SET POWER STATUS
  2416.     AX = 5401h
  2417.     BH = function
  2418.         00h get status
  2419.         Return: BL = current power management status (see #2022)
  2420.         01h set status
  2421.         BL = new power managment status (see #2022)
  2422. Return: AX = function status (see #2023)
  2423. Note:    called by MS Windows 3.1 POWER.DRV
  2424. SeeAlso: AH=53h,AX=5400h,AX=5402h,AX=5403h
  2425.  
  2426. Bitfields for power management status:
  2427. Bit(s)    Description    (Table 2022)
  2428.  0    POWER.EXE power management enabled
  2429.  1    APM firmware power management enabled
  2430.  2-7    reserved (0)
  2431. Notes:    bit 1 is ignored if there is no APM firmware
  2432.     bits 1-0: 00 = POWER OFF, 10 = POWER STD, 11 = POWER ADV
  2433.  
  2434. (Table 2023)
  2435. Values for POWER.EXE function status:
  2436.  0000h    successful
  2437.  0002h    "ERROR_PM_ALREADY_CONNECTED"
  2438.  0003h    "ERROR_PM_NOT_CONNECTED"
  2439.  0087h    "ERROR_PM_INVALID_PARAMETER"
  2440. --------p-2F5402-----------------------------
  2441. INT 2F U - POWER.EXE - GET/SET IDLE DETECTION STRATEGY
  2442.     AX = 5402h
  2443.     BH = subfunction
  2444.         00h get
  2445.         other set
  2446.         BL = detection strategy (00h-0Fh or FFh)
  2447. Return: BX = current/new detection strategy
  2448. SeeAlso: AH=53h,AX=5400h,AX=5401h,AX=5481h,AX=5482h
  2449. --------p-2F5403-----------------------------
  2450. INT 2F U - POWER.EXE - GET/SET ADVANCED POWER MANAGEMENT SETTING
  2451.     AX = 5403h
  2452.     BX = new power management setting or 0000h to get current setting
  2453. Return: AX = status
  2454.         0000h successful
  2455.         BX = power management setting (see #2024)
  2456.         other error code
  2457. SeeAlso: AX=5401h,AX=5480h
  2458.  
  2459. (Table 2024)
  2460. Values for power management setting:
  2461.  0001h-0005h "min"
  2462.  0006h         "reg"
  2463.  0007h-0008h "max"
  2464. --------t-2F5453-----------------------------
  2465. INT 2F - TesSeRact RAM-RESIDENT PROGRAM INTERFACE
  2466.     AX = 5453h
  2467.     BX = subfunction
  2468.         00h installation check
  2469.         CX = 0000h
  2470.         DS:SI -> 8-char blank-padded name (see #2025)
  2471.         Return: AX = FFFFh installed
  2472.                 CX = ID number of already-installed copy
  2473.             AX = anything else, not installed
  2474.                 CX = ID number for TSR when installed
  2475.         01h get user parameters
  2476.         CX = TSR ID number
  2477.         Return: AX = status
  2478.                 0000h successful
  2479.                 ES:BX -> user parameter block (see #2026)
  2480.                 nonzero failed
  2481.         02h check if hotkey in use
  2482.         CL = scan code of hot key (see #0005)
  2483.         Return: AX = FFFFh hot key conflicts with another TSR
  2484.                  otherwise safe to use the hotkey
  2485.         03h replace default critical error handler
  2486.         CX = TSR ID number
  2487.         DS:SI -> new routine for INT 24h
  2488.         Return: AX = nonzero, unable to install new handler
  2489.         04h get internal data area
  2490.         CX = TSR ID number
  2491.         Return: AX = status
  2492.                 0000h successful
  2493.                 ES:BX -> TSR's internal data area (see #2027)
  2494.                 nonzero, TSR not found
  2495.         05h set multiple hot keys
  2496.         CX = TSR ID number
  2497.         DL = number of additional hot keys to allocate
  2498.         DS:SI -> table of hot keys
  2499.             BYTE  hotkey scan code (see #0005)
  2500.             BYTE  hotkey shift state
  2501.             BYTE  flag value to pass to TSR (nonzero)
  2502.         Return: AX = nonzero, unable to install hot keys
  2503.         06h - 0Fh reserved
  2504.         10h enable TSR
  2505.         CX = TSR ID number
  2506.         Return: AX = nonzero, unable to enable
  2507.         11h disable TSR
  2508.         CX = TSR ID number
  2509.         Return: AX = nonzero, unable to disable
  2510.         12h unload TSR
  2511.         CX = TSR ID number
  2512.         Return: AX = nonzero, invalid TSR number
  2513.         Note: if any interrupts used by TSR have been grabbed by
  2514.             another TSR, the TesSeRact routines will wait until
  2515.             it is safe to remove the indicated TSR from memory
  2516.         13h restart TSR
  2517.         CX = TSR ID number of TSR which was unloaded but is still in
  2518.              memory
  2519.         Return: AX = nonzero, unable to restart TSR
  2520.         14h get status word
  2521.         CX = TSR ID number
  2522.         Return: AX = FFFFh invalid ID number
  2523.                = other, successful
  2524.                 BX = bit flags
  2525.         15h set status word
  2526.         CX = TSR ID number
  2527.         DX = new bit flags
  2528.         Return: AX = nonzero, unable to set status word
  2529.         16h get INDOS state at popup
  2530.         CX = TSR ID number
  2531.         Return: AX = 0000h successful
  2532.                 BX = value of INDOS flag
  2533.         17h - 1Fh reserved
  2534.         20h call user procedure
  2535.         CX = TSR ID number
  2536.         ES:DI -> user-defined data
  2537.         Return: AX = 0000h successful
  2538.         21h stuff keystrokes into keyboard buffer
  2539.         CX = TSR ID number
  2540.         DL = speed
  2541.             00h stuff keystrokes only when buffer is empty
  2542.             01h stuff up to four keystrokes per clock tick
  2543.             02h stuff up to 15 keystrokes per clock tick
  2544.         DH = scan code flag
  2545.             if zero, buffer contains alternating ASCII and scan codes
  2546.             if nonzero, buffer contains only ASCII codes
  2547.         SI = number of keystrokes
  2548.         ES:DI -> buffer to stuff
  2549.         Return: AX = 0000h success
  2550.                  F0F0h user aborted with ^C or ^Break
  2551.                  other unable to stuff keystrokes
  2552.         22h (v1.10) trigger popup
  2553.         CX = TSR ID number
  2554.         Return: AX = 0000h success, TSR will either pop up or beep to
  2555.                    indicate that it is unable to pop up
  2556.                  nonzero invalid ID number
  2557.         23h (v1.10) invoke TSR's background function
  2558.         CX = TSR ID number
  2559.         Return: AX = 0000h success
  2560.                  FFFFh not safe to call background function
  2561.                  nonzero invalid ID number
  2562.         24h - 2Fh reserved
  2563. Notes:    Borland's THELP.COM popup help system for Turbo Pascal and Turbo C
  2564.       (versions 1.x and 2.x only) fully supports the TesSeRact API, as
  2565.       do the SWAP?? programs by Innovative Data Concepts.
  2566.     AVATAR.SYS supports functions 00h and 01h (only the first three fields
  2567.       of the user parameter block) using the name "AVATAR  "
  2568. SeeAlso: AX=CAFEh,INT 16/AX=55FFh,INT 2D"AMIS"
  2569. Index:    installation check;TesSeRact TSR interface|uninstall;TesSeRact
  2570.  
  2571. (Table 2025)
  2572. Values for TesSeRact names:
  2573.  "AVATAR  "    AVATAR.SYS
  2574.  "QeditTSR"    TSR version of SemWare's Qedit editor
  2575.  "SCRNBLNK"    Trusted Access screen blanker
  2576.  
  2577. Format of TesSeRact User Parameter Block:
  2578. Offset    Size    Description    (Table 2026)
  2579.  00h  8 BYTEs    blank-padded TSR name
  2580.  08h    WORD    TSR ID number
  2581.  0Ah    DWORD    bitmap of supported functions
  2582.  0Eh    BYTE    scan code of primary hotkey (see #0005)
  2583.         00h = pop up when shift states match
  2584.         FFh = no popup (if shift state also FFh)
  2585.  0Fh    BYTE    shift state of primary hotkey
  2586.         FFh = no popup (if scan code also FFh)
  2587.  10h    BYTE    number of secondary hotkeys
  2588.  11h    DWORD    pointer to extra hotkeys set by func 05h
  2589.  15h    WORD    current TSR status flags
  2590.  17h    WORD    PSP segment of TSR
  2591.  19h    DWORD    DTA for TSR
  2592.  1Dh    WORD    default DS for TSR
  2593.  1Fh    DWORD    stack at popup
  2594.  23h    DWORD    stack at background invocation
  2595. Index:    hotkeys;TesSeRact TSR interface
  2596.  
  2597. Format of TSR internal data area:
  2598. Offset    Size    Description    (Table 2027)
  2599.  00h    BYTE    revision level of TesSeRact library
  2600.  01h    BYTE    type of popup in effect
  2601.  02h    BYTE    INT 08 occurred since last invocation
  2602.  03h    BYTE    INT 13 occurred since last invocation
  2603.  04h    BYTE    active interrupts
  2604.  05h    BYTE    active soft interrupts
  2605.  06h    BYTE    DOS major version
  2606.  07h    BYTE    how long to wait before popping up
  2607.  08h    DWORD    pointer to INDOS flag
  2608.  0CH    DWORD    pointer to DOS critical error flag
  2609.  10h    WORD    PSP segment of interrupted program
  2610.  12h    WORD    PSP segment of prog interrupted by INT 28
  2611.  14h    DWORD    DTA of interrupted program
  2612.  18h    DWORD    DTA of program interrupted by INT 28
  2613.  1Ch    WORD    SS of interrupted program
  2614.  1Eh    WORD    SP of interrupted program
  2615.  20h    WORD    SS of program interrupted by INT 28
  2616.  22h    WORD    SP of program interrupted by INT 28
  2617.  24h    DWORD    INT 24 of interrupted program
  2618.  28h  3 WORDs    DOS 3.0+ extended error info
  2619.  2Eh    BYTE    old BREAK setting
  2620.  2Fh    BYTE    old VERIFY setting
  2621.  30h    BYTE    were running MS WORD 4.0 before popup
  2622.  31h    BYTE    MS WORD 4.0 special popup flag
  2623.  32h    BYTE    enhanced keyboard call in use
  2624.  33h    BYTE    delay for MS WORD 4.0
  2625. 11 times (for INTs 08h,09h,13h,16h,1Ch,21h,28h,2Fh,1Bh,23h, and 24h):
  2626.     DWORD    old interrupt vector
  2627.     BYTE    interrupt number
  2628.     WORD    offset in TesSeRact code segment of new interrupt handler
  2629. --------p-2F5480-----------------------------
  2630. INT 2F U - POWER.EXE - GET/SET ???
  2631.     AX = 5480h
  2632.     BX = direction
  2633.         0000h get
  2634.         other set
  2635.     CX = size of buffer (at least 0010h)
  2636.     DS:SI -> buffer
  2637. Return: AX = status
  2638.         0000h successful
  2639.         other error code
  2640. SeeAlso: AX=5400h,AX=5481h,AX=548Fh
  2641. --------p-2F5481-----------------------------
  2642. INT 2F U - POWER.EXE - GET STATISTICS
  2643.     AX = 5481h
  2644.     BX = which statistics
  2645.         0000h idle detection
  2646.         0001h APM statistics
  2647.     CX = length of buffer in bytes
  2648.     DS:SI -> buffer for statistics (see #2028,#2029)
  2649. Return: AX = status
  2650.         0000h successful
  2651.         0071h "ERROR_PM_BUFFER_TOO_SMALL"
  2652.         0087h "ERROR_PM_INVALID_PARAMETER"
  2653. SeeAlso: AH=53h,AX=5400h,AX=5480h,AX=5402h,AX=5482h
  2654.  
  2655. Format of POWER.EXE idle detection statistics:
  2656. Offset    Size    Description    (Table 2028)
  2657.  00h    DWORD    "CPU_ON_TIME" total time CPU is active with POWER.EXE idle
  2658.           detection enabled, in timer ticks
  2659.  04h    DWORD    "CPU_IDLE_TIME" timer ticks during which CPU was idle
  2660.         (divide by previous to get idle    rate)
  2661.  08h    DWORD    total idle calls
  2662.  0Ch    DWORD    "TOTAL_APP_IDLE" total INT 2Fh idle calls
  2663.  10h    DWORD    "TOTAL_DOS_YIELD" total INT 28h idle calls
  2664.  14h    DWORD    "TOTAL_KEY_IDLE" total INT 16h idle calls
  2665.  18h    DWORD    "TOTAL_DOS_IDLE" total INT 2Ah idle calls
  2666.  
  2667. Format of APM statistics:
  2668. Offset    Size    Description    (Table 2029)
  2669.  00h    DWORD    "RESUME_COUNT" total number of resumes since last APM_ENABLE
  2670. --------p-2F5482-----------------------------
  2671. INT 2F U - POWER.EXE - GET/SET APM POLLING FREQUENCY
  2672.     AX = 5482h
  2673.     BX = new polling frequency or 0000h to get current frequency
  2674. Return: AX = 0000h (successful)
  2675.     BX = current frequency if BX=0000h on entry
  2676. SeeAlso: AH=53h,AX=5400h,AX=5401h,AX=5480h,AX=5481h,AX=548Fh
  2677. --------p-2F548F-----------------------------
  2678. INT 2F U - POWER.EXE - GET/SET ???
  2679.     AX = 548Fh
  2680.     BX = ??? or 0000h to get current ???
  2681. Return: AX = 0000h (successful)
  2682.     BX = current ???
  2683.     CX = ???
  2684. SeeAlso: AX=5400h,AX=5480h,AX=5482h
  2685. --------l-2F5500-----------------------------
  2686. INT 2F U - DOS 5+ - COMMAND.COM INTERFACE
  2687.     AX = 5500h
  2688. Return: AX = 0000h if an instance of COMMAND.COM is already running
  2689.     DS:SI -> entry point table
  2690. Notes:    used to access the shareable portion of COMMAND.COM, which may have
  2691.       been moved into the HMA; only the primary COMMAND.COM retains this
  2692.       portion
  2693.     procedures called from a dispatcher in COMMAND's resident portion;
  2694.       most assume that the segment address of the resident portion is on
  2695.       the stack and are thus not of general use
  2696. SeeAlso: AX=5501h
  2697. --------l-2F5501-----------------------------
  2698. INT 2F U - DOS 5+ - ROM COMMAND.COM INTERFACE
  2699.     AX = 5501h
  2700. Return: ???
  2701. Note:    used to determine whether the caller is the first instance of ROM
  2702.       COMMAND.COM
  2703. SeeAlso: AX=5500h
  2704. --------R-2F5600-----------------------------
  2705. INT 2F - INTERLNK - INSTALLATION CHECK
  2706.     AX = 5600h
  2707.     DX = magic value FFFFh
  2708.     BL = instance number (00h = any, 01h = first loaded, etc.)
  2709. Return: AL = FFh if installed
  2710.         BL = instance number
  2711.         CX = ??? (apparently always 0001h)
  2712.         DX = resident CS of driver, DX:0000h -> header (see #2030)
  2713. SeeAlso: AX=5601h,AX=5602h,INT 60/AX=0000h
  2714.  
  2715. Format of Interlnk device driver header:
  2716. Offset    Size    Description    (Table 2030)
  2717.  00h    DWORD    pointer to next driver, offset=FFFFh if last driver
  2718.  04h    WORD    device attributes (see #0934,#0935)
  2719.  06h    WORD    device strategy entry point
  2720.  08h    WORD    device interrupt entry point
  2721.  0Ah  8 BYTEs    character device name "NUL2    "
  2722.  12h 165 BYTEs    ???
  2723.  B7h 67 BYTEs    fully qualified Interlnk filename
  2724.  FAh  6 BYTEs    ???
  2725. 100h    DWORD    pointer back to Interlnk filename at offset B7h
  2726. 104h  8 BYTEs    ???
  2727. 10Ch    BYTE    total number of redirected drives
  2728. 10Dh    BYTE    first local drive number (0=A:)
  2729. 10Eh    BYTE    printer redirection (0=no, 1=yes)
  2730. 10Fh    BYTE    ???
  2731. 110h  3    BYTEs    LPT1...3 status (0FFh=invalid)
  2732. 113h 26 BYTEs    remote drive number (0=A:, 0FEh=unused) (see note below)
  2733. 12Dh 26 BYTEs    always 0FEh ???
  2734. 147h 26 BYTEs    always 0FFh ???
  2735. Note:    to obtain the remote drive number, subtract the value at offset 10Ch
  2736.       from the local drive number before indexing into the table at 113h
  2737.       (example: if local drives F, G, H are remote drives C, F, E then
  2738.       the first three bytes at offset 113h are 02h, 05h, 04h)
  2739.     for each instance of Interlnk, an extra device driver is loaded, but
  2740.       all have the same device name NUL2
  2741. SeeAlso: #0933 at INT 21/AH=52h
  2742. --------R-2F5601-----------------------------
  2743. INT 2F - INTERLNK - CHECK IF REDIRECTED DRIVE
  2744.     AX = 5601h
  2745.     DX = magic value FFFFh
  2746.     BH = drive number (0=A:)
  2747.     BL = 00h
  2748. Return: (as for AL=00h if redirected drive)
  2749. SeeAlso: AX=5600h
  2750. --------R-2F5602-----------------------------
  2751. INT 2F - INTERLNK - GET ???
  2752.     AX = 5602h
  2753.     DX = magic value FFFFh
  2754. Return: CX = ???
  2755. SeeAlso: AX=5600h
  2756. ----------2F57-------------------------------
  2757. INT 2F U - ???
  2758.     AH = 57h
  2759.     ???
  2760. Return: ???
  2761. Note:    reportedly used by Iomega Corp.
  2762. --------c-2F5758BX4858-----------------------
  2763. INT 2F U - Helix Multimedia Cloaking - CACHECLK - INSTALLATION CHECK
  2764.     AX = 5758h
  2765.     BX = 4858h ('HX')
  2766.     DX = 4443h ('DC')
  2767.     CX <> 5758h
  2768. Return: BX = 6878h if installed
  2769.     DX = 6463h if installed
  2770.        CX = version (CH=major,CL=minor)
  2771. Program: CACHECLK is a 'Cloaked' disk cache by Helix Software
  2772. Note:    returns with registers unchanged if CX=5758h on entry
  2773. SeeAlso: INT 16/AX=5758h/BX=4858h,INT 2F/AX=4310h"Cloaking"
  2774. --------X-2F5D00-----------------------------
  2775. INT 2F U - PCMCIA - AWARD PCDISK - GET INFO FROM DRIVER ???
  2776.     AX = 5D00h
  2777. Return: ES:BX -> ???
  2778. Note:    supported by Ventura Micro / Award PCDISK.EXE v1.02c PCMCIA/ATA driver
  2779. SeeAlso: AX=5D01h,INT 21/AX=440Dh
  2780. --------X-2F5D01-----------------------------
  2781. INT 2F U - PCMCIA - AWARD PCDISK - PUT INFO INTO DRIVER ???
  2782.     AX = 5D01h
  2783.     ES:BX -> ???
  2784. Return: nothing
  2785. Note:    supported by Ventura Micro / Award PCDISK.EXE v1.02c PCMCIA/ATA driver
  2786. SeeAlso: AX=5D00h,INT 21/AX=440Dh
  2787. --------s-2F60FFDL00-------------------------
  2788. INT 2F U - IPLAY v1.00b - INSTALLATION CHECK
  2789.     AX = 60FFh
  2790.     DL = 00h (function number)
  2791.     BX = 5344h ('SD')
  2792.     CX = 4D50h ('MP')
  2793. Return: AX = 4F4Bh ('OK') if installed
  2794. Program: IPLAY is the Inertia Player by Prime and Excalibur for .MODules
  2795.       (digitized music files)
  2796. Note:    in version 1.00b, any value for DL except 01h invokes this function
  2797. SeeAlso: AX=60FFh/DL=01h
  2798. --------s-2F60FFDL01-------------------------
  2799. INT 2F U - IPLAY v1.00b - GET DATA SEGMENT
  2800.     AX = 60FFh
  2801.     DL = 01h (function number)
  2802.     BX = 5344h ('SD')
  2803.     CX = 4D50h ('MP')
  2804. Return: AX = data segment
  2805. Program: IPLAY is the Inertia Player by Prime and Excalibur for .MODules
  2806.       (digitized music files)
  2807. SeeAlso: AX=60FFh/DL=00h
  2808. --------v-2F6282-----------------------------
  2809. INT 2F U - PC Tools v7.0+ VDEFEND, VSAFE, VWATCH, DATAMON - SET ??? ADDRESS
  2810.     AX = 6282h
  2811.     CX:DX -> ??? or 0000h:0000h
  2812.     DI = segment of ??? record (see #2031) or 0000h/FFFFh to ignore
  2813. Return: BX = 0062h
  2814. Note:    if CX:DX = 0000h:0000h on entry, the ??? address is not changed
  2815.       (DATAMON only)
  2816. SeeAlso: INT 13/AH=FAh"VSAFE",INT 21/AH=FAh"VDEFEND"
  2817.  
  2818. Format of VSAFE/VWATCH record:
  2819. Offset    Size    Description    (Table 2031)
  2820.  00h    DWORD    ???
  2821.  04h    WORD    offset of ??? in record's segment
  2822.         VSAFE 2.0 sets byte at +01h to 56h or 58h
  2823.         VWATCH 2.1 sets byte at +02h to 56h or 58h
  2824.  06h  2 BYTEs    ???
  2825.  08h    BYTE    ??? (01h/other)
  2826. --------v-2F6284BX0000-----------------------
  2827. INT 2F U - PC Tools v7-8 DATAMON, v9+ DPROTECT    - INSTALLATION CHECK
  2828.     AX = 6284h
  2829.     BX = 0000h
  2830.     CX = 0000h
  2831. Return: AX = segment of resident code
  2832.     BX = 5555h
  2833.     CX = 5555h
  2834. Note:    also supported by DOS 6 UNDELETE which is licensed from PC Tools
  2835. SeeAlso: AX=6284h/BX=0001h,INT 16/AX=FFA3h
  2836. --------v-2F6284BX0001-----------------------
  2837. INT 2F U - PC Tools v7-8 DATAMON, v9+ DPROTECT - GET ???
  2838.     AX = 6284h
  2839.     BX = 0001h
  2840.     CX = 0001h
  2841. Return: AX:BX -> ??? data (see #2032)
  2842.     CX = BX
  2843. SeeAlso: AX=6284h/BX=0000h
  2844.  
  2845. Format of DPROTECT data for v9.0:
  2846. Offset    Size    Description    (Table 2032)
  2847.  00h  5 BYTEs    ???
  2848.  05h    WORD    resident code segment (may be segment of DWORD at +03h)
  2849.  07h    DWORD    -> FAR function to sound alert tone
  2850.     ???
  2851. --------v-2F6284BX0002-----------------------
  2852. INT 2F U - PC Tools v7-8 DATAMON, v9+ DPROTECT - GET OPTIONS
  2853.     AX = 6284h
  2854.     BX = 0002h
  2855.     CX = 0002h
  2856. Return: AX = options (see #2033)
  2857.     BX = ??? (0000h for v9)
  2858.     CX = AX
  2859.     DX = BX
  2860. Note:    also supported by DOS 6 UNDELETE which is licensed from PC Tools
  2861. SeeAlso: AX=6284h/BX=0000h,AX=6284h/BX=0003h
  2862.  
  2863. Bitfields for DATAMON/DPROTECT options:
  2864. Bit(s)    Description    (Table 2033)
  2865.  1    ???
  2866.  12    disabled
  2867.  13    using Delete Sentry
  2868.  14    using Delete Tracker
  2869. --------v-2F6284BX0003-----------------------
  2870. INT 2F U - PC Tools v7-8 DATAMON, v9+ DPROTECT - SET OPTION??? FLAGS
  2871.     AX = 6284h
  2872.     BX = 0003h
  2873.     CX = flags (see #2034)
  2874.     DX = flags
  2875.         bit 15: ???
  2876. Note:    v9 DPROTECT only checks bit 12 of CX, and ignores DX entirely
  2877. SeeAlso: AX=6284h/BX=0002h
  2878.  
  2879. Bitfields for DATAMON/DPROTECT CX flags:
  2880. Bit(s)    Description    (Table 2034)
  2881.  3    ???
  2882.  5    ???
  2883.  10    ???
  2884.  12    disable DATAMON/DPROTECT
  2885. --------v-2F6284BX0004-----------------------
  2886. INT 2F U - PC Tools v8 DATAMON, v9+ DPROTECT - ???
  2887.     AX = 6284h
  2888.     BX = 0004h
  2889.     CX = 0004h
  2890. Return: AX = 5555h
  2891.     BX = ??? (0800h)
  2892.     CX = ??? (FCCCh for v8, FCCBh for v9)
  2893. --------V-2F6400-----------------------------
  2894. INT 2F - SCRNSAV2.COM - INSTALLATION CHECK
  2895.     AX = 6400h
  2896. Return: AL = installation state
  2897.         00h not installed
  2898.         FFh installed
  2899. Program: SCRNSAV2.COM is a screen saver for PS/2s with VGA by Alan Ballard
  2900. SeeAlso: INT 10/AX=5555h,INT 14/AX=AA01h
  2901. Index:    screen saver;SCRNSAV2
  2902. --------N-2F7000-----------------------------
  2903. INT 2F - License Service API - INSTALLATION CHECK
  2904.     AX = 7000h
  2905.     CX = license server index (0000h to 001Fh)
  2906. Return: AL = status
  2907.         00h not installed
  2908.         FFh installed
  2909. Notes:    The License Service API is being maintained by Microsoft but is being
  2910.       supported by a large number of companies including Apple, Banyan,
  2911.       DEC, HP, Lotus, Microsoft, Novell, Software Publishers Association,
  2912.       and Wordperfect (not a complete list!)
  2913.     Each license service provider must search for the next free index
  2914.       slot to use
  2915. SeeAlso: AX=7001h,AX=7003h,AX=7004h,AX=7005h
  2916. --------N-2F7001-----------------------------
  2917. INT 2F - License Service API - REQUEST LICENSE
  2918.     AX = 7001h
  2919.     CX = license server index (0000h to 001Fh)
  2920.     DS:DX -> SLSREQUEST structure (see #2035)
  2921. Return: AX = status
  2922.         0000h success
  2923.         else  provider error code
  2924.     ES:BX = provider specific handle for the license context
  2925. SeeAlso: AX=7002h,AX=7004h,AX=7005h
  2926.  
  2927. Format of License Service SLSREQUEST structure:
  2928. Offset    Size    Description    (Table 2035)
  2929.  00h    DWORD    (ret) status code
  2930.  04h    DWORD    (ret) handle identifying context
  2931.  08h    DWORD    (call) address of Publisher string
  2932.  0Ch    DWORD    (call) address of Product string
  2933.  10h    DWORD    (call) address of Version string
  2934.  14h    DWORD    units required
  2935.  18h    DWORD    address of comment string
  2936.  1Ch    DWORD    address of SLSCHALLENGE structure (see #2036)
  2937.  
  2938. Format of License Service SLSCHALLENGE structure:
  2939. Offset    Size    Description    (Table 2036)
  2940.  00h    DWORD    algorithm (currently always 1)
  2941.  04h    DWORD    secret to be challenged (1-255)
  2942.  08h    DWORD    size of challenge in bytes (1-255)
  2943.  0Ch  N BYTEs    challenge data
  2944. --------N-2F7002-----------------------------
  2945. INT 2F - License Service API - RELEASE LICENSE
  2946.     AX = 7002h
  2947.     CX = license server index (0000h to 001Fh)
  2948.     DS:DX -> SLSRELEASE structure (see #2037)
  2949.     ES:BX = provider specific handle for the license context
  2950. Return: AL = status
  2951.         00h not installed
  2952.         FFh installed
  2953. SeeAlso: AX=7001h,AX=7005h
  2954.  
  2955. Format of License Service SLSRELEASE structure:
  2956. Offset    Size    Description    (Table 2037)
  2957.  00h    DWORD    handle indentifying license context
  2958.  04h    DWORD    total units consumed
  2959.  08h    DWORD    address of comment string
  2960. --------N-2F7003-----------------------------
  2961. INT 2F - License Service API - UPDATE
  2962.     AX = 7003h
  2963.     CX = license server index (0000h to 001Fh)
  2964.     DS:DX -> SLSUPDATE structure (see #2038)
  2965.     ES:BX = provider specific handle for the license context
  2966. Return: AL = status
  2967.         00h not installed
  2968.         FFh installed
  2969. SeeAlso: AX=7004h,AX=7005h
  2970.  
  2971. Format of License Service SLSUPDATE structure:
  2972. Offset    Size    Description    (Table 2038)
  2973.  00h    DWORD    (ret) status code
  2974.  04h    DWORD    (call) handle identifying license context
  2975.  08h    DWORD    (call) total units consumed
  2976.  0Ch    DWORD    additional units required
  2977.  10h    DWORD    address of comment string
  2978.  14h    DWORD    address of SLSCHALLENGE structure (see #2036)
  2979. --------N-2F7004-----------------------------
  2980. INT 2F - License Service API - GET ERROR
  2981.     AX = 7004h
  2982.     CX = license server index (0000h to 001Fh)
  2983.     DS:DX -> SLSGETERROR structure (see #2039)
  2984.     ES:BX = provider specific handle for the license context
  2985. Return: AL = status
  2986.         00h not installed
  2987.         FFh installed
  2988. SeeAlso: AX=7000h,AX=7001h
  2989.  
  2990. Format of License Service SLSGETERROR structure:
  2991. Offset    Size    Description    (Table 2039)
  2992.  00h    DWORD    (ret) status code
  2993.  04h    DWORD    handle identifying license context
  2994.  08h    DWORD    error code
  2995.  0Ch    DWORD    buffer size in bytes
  2996.  10h  N BYTEs    data buffer
  2997. --------N-2F7005-----------------------------
  2998. INT 2F - License Service API - QUERY LICENSE
  2999.     AX = 7005h
  3000.     CX = license server index (0000h to 001Fh)
  3001.     DS:DX -> SLSQUERY structure (see #2040)
  3002.     ES:BX = provider specific handle for the license context
  3003. Return: AL = status
  3004.         00h not installed
  3005.         FFh installed
  3006. SeeAlso: AX=7001h,AX=7002h
  3007.  
  3008. Format of License Service SLSQUERY structure:
  3009. Offset    Size    Description    (Table 2040)
  3010.  00h    DWORD    (ret) status code
  3011.  04h    DWORD    handle identifying license context
  3012.  08h    DWORD    information index
  3013.  0Ch    DWORD    buffer size in bytes
  3014.  10h  N BYTEs    data buffer
  3015. --------K-2F7041BX4B70-----------------------
  3016. INT 2F U - HP 200LX - KEY200 - INSTALLATION CHECK
  3017.     AX = 7041h
  3018.     BX = 4B70h
  3019. Return: BX = 7965h if keyboard remapper KEY200.COM installed
  3020. --------d-2F7200-----------------------------
  3021. INT 2F - SRDISK v1.30+ - INSTALLATION CHECK
  3022.     AX = 7200h
  3023. Return: AL = FFh if installed
  3024.         ES = segment of device driver header (see #2041)
  3025. Program: SRDISK is a freeware resizeable RAMdisk by Marko Kohtala
  3026. SeeAlso: AX=7201h
  3027.  
  3028. Format of SRDISK device driver header:
  3029. Offset    Size    Description    (Table 2041)
  3030.  00h 10 BYTEs    same as standard device driver header
  3031.           (see #0933 at INT 21/AH=52h)
  3032.  0Ah    BYTE    number of subunits (drives) supported by driver
  3033.  0Bh  3 BYTEs    signature "SRD"
  3034.  0Eh  4 BYTEs    memory type string ("XMS "/"EMS ")
  3035.  12h  4 BYTEs    ASCII driver version string "N.NN"
  3036.  16h    BYTE    00h
  3037.  17h    BYTE    configuration format version (currently 00h or 01h)
  3038.  18h    WORD    offset of drive configuration data
  3039. --------d-2F7201-----------------------------
  3040. INT 2F - SRDISK v2.02 - GET CODE/DATA SEGMENT
  3041.     AX = 7201h
  3042. Return: AL = FFh if installed
  3043.         ES = segment of device driver header
  3044. Program: SRDISK is a freeware resizeable RAMdisk by Marko Kohtala
  3045. SeeAlso: AX=7200h
  3046. --------N-2F7A00-----------------------------
  3047. INT 2F - Novell NetWare - LOW-LEVEL API (IPX) INSTALLATION CHECK
  3048.     AX = 7A00h
  3049. Return: AL = status
  3050.         00h not installed
  3051.         FFh installed
  3052.         ES:DI -> FAR entry point for routines accessed exclusively
  3053.               through INT 7A in NetWare versions through 2.0a.
  3054.               Call with same values as INT 7A
  3055.         ES:BX -> two bytes containing IPX major/minor version
  3056.             (IPXODI v2.12; BX unchanged by older IPX drivers)
  3057. SeeAlso: AX=7AFFh/BX=0000h,AX=D800h,INT 64"Novell",INT 7A"Novell"
  3058. --------N-2F7A10-----------------------------
  3059. INT 2F U - Novell NetWare - TBMI v1.1+ - GET TBMI STATUS
  3060.     AX = 7A10h
  3061. Return: DH = major TBMI version number
  3062.     DL = minor TBMI version number (01h for v1.1)
  3063.     CX = segment address of TBMI resident part
  3064.     BX = status word of TBMI (see #2042)
  3065. Note:    TBMI is the Task-Switched Buffer Manager Interface
  3066. SeeAlso: AX=7A11h,AX=7A12h,AX=7A13h,AX=7A14h
  3067.  
  3068. Bitfields for NetWare TBMI status word:
  3069. Bit(s)    Description    (Table 2042)
  3070.  0    INT2F intercepted by TBMI
  3071.  1    INT7A intercepted by TBMI
  3072.  2    INT64 intercepted by TBMI
  3073.  3-14    reserved or unused ???
  3074.  15    outstanding task ID was detected
  3075. --------N-2F7A11-----------------------------
  3076. INT 2F U - Novell NetWare - TBMI v1.1+ - GET INT2F HANDLERS
  3077.     AX = 7A11h
  3078. Return: ES:BX -> old INT 2F handler
  3079.     DS:DX -> TBMI INT 2F handler
  3080. SeeAlso: AX=7A10h,AX=7A12h,AX=7A13h,AX=7A1Ah
  3081. --------N-2F7A12-----------------------------
  3082. INT 2F U - Novell NetWare - TBMI v1.1+ - GET INT64 HANDLERS
  3083.     AX = 7A12h
  3084. Return: ES:BX -> old INT 64 handler
  3085.     DS:DX -> TBMI INT 64 handler
  3086. SeeAlso: AX=7A10h,AX=7A11h,AX=7A13h
  3087. --------N-2F7A13-----------------------------
  3088. INT 2F U - Novell NetWare - TBMI v1.1+ - GET INT7A HANDLERS
  3089.     AX = 7A13h
  3090. Return: ES:BX -> old INT 7A handler
  3091.     DS:DX -> TBMI INT 7A handler
  3092. SeeAlso: AX=7A10h,AX=7A11h,AX=7A12h
  3093. --------N-2F7A14-----------------------------
  3094. INT 2F U - Novell NetWare - TBMI v1.1+ - GET STATISTICS
  3095.     AX = 7A14h
  3096.     CX = statistic to retrieve
  3097.         0000h available diagnostic functions???
  3098.         Return: CX = maximum available function??? (000Ch for v2.0)
  3099.         0001h buffers in use
  3100.         Return: CX = TBMI buffers currently in use
  3101.         0002h maximum buffers used
  3102.         Return: CX = maximum number of buffers ever in use
  3103.         0003h unavailable buffers
  3104.         Return: CX = count of unavailable TBMI buffers
  3105.         0004h old interrupt usage
  3106.         Return: CX = TBMI accesses to intercepted old vectors INT 2F,
  3107.                   INT 64, and INT 7A
  3108.         0005h far call usage
  3109.         Return: CX = TBMI accesses to IPX/SPX far call handler (not
  3110.                   including internal accesses)
  3111.         0006h task buffering
  3112.         Return: CX = TBMI task buffering status (enabled/disabled or
  3113.                   disable/enable switch count???)
  3114.         0007h current task ID
  3115.         Return: CX = TBMI current task ID number (0000h if ???)
  3116.         0008h outstanding ID count
  3117.         Return: CX = number of outstanding TBMI IDs
  3118.         0009h configured ECBs
  3119.         Return: CX = number of TBMI Event Control Blocks configured
  3120.         000Ah configured data ECBs
  3121.         Return: CX = number of TBMI data ECBs configured
  3122.         000Bh configured sockets
  3123.         Return: CX = number of TBMI sockets configured (from NETCFG)
  3124.         000Ch current sockets
  3125.         Return: CX = number of TBMI sockets currently in use
  3126. Return: BX = maximum supported subfunction (000Ch)
  3127. SeeAlso: AX=7A10h
  3128. --------N-2F7A15-----------------------------
  3129. INT 2F OU - Novell NetWare - TBMI v1.1 only - RESET ???
  3130.     AX = 7A15h
  3131. Return: BX = new value of ???
  3132. Desc:    set ??? to its default value
  3133. Note:    this call is a NOP under TBMI v2.0 (TBMI2)
  3134. SeeAlso: AX=7A17h
  3135. --------N-2F7A16-----------------------------
  3136. INT 2F OU - Novell NetWare - TBMI v1.1 only - ???
  3137.     AX = 7A16h
  3138.     CX = ???
  3139.     ???
  3140. Return: ???
  3141. Note:    this call is a NOP under TBMI v2.0 (TBMI2)
  3142. --------N-2F7A17-----------------------------
  3143. INT 2F OU - Novell NetWare - TBMI v1.1 only - ???
  3144.     AX = 7A17h
  3145.     ???
  3146. Return: BX = old value of ???
  3147.     CX = new value of ???
  3148. Note:    this call is a NOP under TBMI v2.0 (TBMI2)
  3149. SeeAlso: AX=7A15h
  3150. --------N-2F7A18-----------------------------
  3151. INT 2F U - Novell NetWare - TASKID v1.0 - INSTALLATION CHECK
  3152.     AX = 7A18h
  3153. Return: AL = FFh if installed
  3154.         BX = configuration flags (see #2043)
  3155.         CX = resident code segment
  3156. SeeAlso: AX=7A10h
  3157.  
  3158. Bitfields for NetWare TASKID configuration flags:
  3159. Bit(s)    Description    (Table 2043)
  3160.  0    INT 2F hooked
  3161.  3    INT 08 hooked
  3162.  other    unused
  3163. --------N-2F7A19-----------------------------
  3164. INT 2F U - Novell NetWare - TASKID v1.0 - GET INT 08 HANDLERS
  3165.     AX = 7A19h
  3166. Return: AL = FFh
  3167.     DS:DX -> TASKID INT 08 handler
  3168.     ES:BX -> original INT 08 handler
  3169. --------N-2F7A1A-----------------------------
  3170. INT 2F U - Novell NetWare - TASKID v1.0 - GET INT 2F HANDLERS
  3171.     AX = 7A1Ah
  3172. Return: AL = FFh
  3173.     DX:DX -> TASKID INT 2F handler
  3174.     ES:BX -> original INT 2F handler
  3175. SeeAlso: AX=7A11h,AX=7A19h
  3176. --------N-2F7A1B-----------------------------
  3177. INT 2F U - Novell NetWare - TASKID v1.0 - GET DIAGNOSTICS INFORMATION
  3178.     AX = 7A1Bh
  3179.     CX = desired information
  3180.         0000h supported functions
  3181.         0001h TASKID ID number
  3182.         Return: CX = ID number
  3183.         0002h set-ID count
  3184.         Return: CX = ID set count
  3185. Return: AL = FFh
  3186.     BX = highest supported subfunction number (0002h)
  3187. SeeAlso: AX=7A14h,AX=7A18h
  3188. --------N-2F7A1C-----------------------------
  3189. INT 2F U - Novell NetWare - TBMI v1.1+ - ???
  3190.     AX = 7A1Ch
  3191.     BP = ???
  3192.     CX:DX = ???
  3193. Return: AX = 70FFh
  3194. --------N-2F7A1D-----------------------------
  3195. INT 2F U - Novell NetWare - TBMI v1.1+ - ???
  3196.     AX = 7A1Dh
  3197.     ???
  3198. Return: ES = ???
  3199.     ???
  3200.     SI destroyed
  3201. --------N-2F7A1E-----------------------------
  3202. INT 2F U - Novell NetWare - TBMI v1.1+ - ???
  3203.     AX = 7A1Eh
  3204.     ES:SI -> ???
  3205.     ???
  3206. Return: ???
  3207. --------N-2F7A20BX0000-----------------------
  3208. INT 2F - Novell NetWare - Adv NetWare 4.0 DOS Requester - GET VLM CALL ADDRESS
  3209.     AX = 7A20h
  3210.     BX = 0000h
  3211. Return: AX = 0000h on success (installed)
  3212.         ES:BX -> far call address for DOS Requester (see #2044)
  3213. Notes:    the DOS Requester replaces the NetWare Shell (ANETx, NETx) on
  3214.       NetWare LAN's as of the release of Advanced NetWare 4.0 (1993).  It
  3215.       is backward compatible with NetWare 2.1x through 3.11 servers as
  3216.       well.     Note that there was a NetWare 4.0 in the early 1980's, which
  3217.       can cause confusion.
  3218.     this call is used as the installation check by VLM.EXE, which is the
  3219.       loader for all the modules of the DOS Requester
  3220.     .VLMs are standard old .EXE format executables whose normal entry point
  3221.       merely terminates to prevent loading from the command line.  The
  3222.       real entry point is found by looking at the VLM header at the
  3223.       beginning of the load image (see #2047)
  3224. Index:    installation check;NetWare 4.0 DOS Requester
  3225.  
  3226. (Table 2044)
  3227. Call DOS Requester entry point with:
  3228.     STACK:    WORD    destination function
  3229.         WORD    destination VLM ID (see #2046)
  3230.         WORD    source VLM ID (0000h = application program)
  3231.     registers as appropriate for function
  3232. Return: AX = status code (0000h,8811h,8846h,8848h,8853h) (see #2045)
  3233.     other registers as appropriate for function
  3234.     STACK popped
  3235.     BP destroyed
  3236.  
  3237. (Table 2045)
  3238. Values for VLM status code:
  3239.  0000h    successful
  3240.  88xxh    error generated by requester
  3241.  8801h    invalid or non-attached connection handle
  3242.  8803h    cannot add CDS
  3243.  8804h    bad path
  3244.  8805h    error sending or receiving NCP packets
  3245.  8811h    nonexistent function called
  3246.  8836h    attempted function with invalid parameter
  3247.  8846h    ???
  3248.  8848h    non-loaded or nonexistent VLM called
  3249.  884Dh    no more SFT entries (too many handles)
  3250.  8850h    too many reply fragments
  3251.  8853h    ???
  3252.  89xxh    error generated by server
  3253.     low byte = return code from server (see also #1185,#1219)
  3254.  8900h    server successful
  3255.  8901h    out of disk space
  3256.  897Eh    NCP boundary check failed
  3257.  897Fh    ???
  3258.  8980h    lock failed; file in use
  3259.  8981h    out of handles
  3260.  8982h    no open privileges
  3261.  8983h    hard (non-correctable) I/O error
  3262.  8984h    no creation privileges
  3263.  8985h    no create/delete privileges
  3264.  8986h    attempted to create a file which already exists read-only
  3265.  8987h    filename error during creation (wildcards in name)
  3266.  8988h    invalid file handle
  3267.  8989h    no search privileges
  3268.  898Ah    no deletion privileges
  3269.  898Bh    no rename privileges
  3270.  898Ch    no modify privileges
  3271.  898Dh    some affected files are in use
  3272.  898Eh    all affected files are in use
  3273.  898Fh    some affected files are read-only
  3274.  8990h    all affected files are read-only; volume read-only
  3275.  8991h    some files could not be renamed because target names already exist
  3276.  8992h    all affected names exist
  3277.  8993h    no read privileges
  3278.  8994h    no write privileges
  3279.  8995h    file detached
  3280.  8996h    server out of memory
  3281.  8997h    no disk space for spool file
  3282.  8998h    disk map error; volume does not exist
  3283.  8999h    directory full
  3284.  899Ah    attempt to rename across volumes
  3285.  899Bh    bad directory handle
  3286.  899Ch    invalid path; no more trustees
  3287.  899Dh    no directory handles
  3288.  899Eh    bad filename
  3289.  899Fh    directory active
  3290.  89A0h    directory not empty
  3291.  89A1h    directory I/O error
  3292.  89A2h    I/O lock error
  3293.  89A3h-89BEh ???
  3294.  89BFh    invalid name space
  3295.  89C0h    no account privileges
  3296.  89C1h    no account balance
  3297.  89C2h    credit limit exceeded
  3298.  89C4h    account disabled
  3299.  89C5h    login lockout (intruder detection activated)
  3300.  89C6h    no console rights
  3301.  89C7h-89CFh
  3302.  89D0h    queue error
  3303.  89D1h    no queue
  3304.  89D2h    no queue server
  3305.  89D3h    no queue rights
  3306.  89D4h    queue full
  3307.  89D5h    no queue job
  3308.  89D6h    no job rights; unencrypted password
  3309.  89D7h    queue servicing error; duplicate password; bad account
  3310.  89D8h    queue not active; password too short
  3311.  89D9h    station not queue server; maximum logins exceeded
  3312.  89DAh    queue halted; bad login time
  3313.  89DBh    maximum queue servers; unauthorized login station
  3314.  89DCh    account disabled or expired
  3315.  89DEh    password expired (all grace logins used up)
  3316.  89DFh    password expired but login allowed (grace login)
  3317.  89E0h-89E6h ???
  3318.  89E7h    no disk track
  3319.  89E8h    property is not an item property; write to group
  3320.  89E9h    member exists
  3321.  89EAh    no such member
  3322.  89EBh    property is not a set property
  3323.  89ECh    no such set
  3324.  89EDh    property exists
  3325.  89EEh    object exists
  3326.  89EFh    illegal name
  3327.  89F0h    illegal wildcard
  3328.  89F1h    invalid bindery security level
  3329.  89F2h    not allowed to read object
  3330.  89F3h    not allowed to write/rename object
  3331.  89F4h    not allowed to delete object
  3332.  89F5h    not allowed to create object
  3333.  89F6h    not allowed to delete property
  3334.  89F7h    not allowed to create property; attempt to use non-local drive
  3335.  89F8h    not allowed to write property; already attached to server
  3336.  89F9h    not allowed to read property; no free connection slots
  3337.  89FAh    temporary remap error; no more server slots
  3338.  89FBh    no such property; invalid parameters
  3339.  89FCh    no such object; internet packet request canceled; unknown file server
  3340.  89FDh    bad station number; lock collision
  3341.  89FEh    directory locked; bindery locked; timeout
  3342.  89FFh    general error; hard error; lock error
  3343. Note:    some server-generated error codes have multiple interpretations; use
  3344.       the one appropriate to the failing call
  3345.  
  3346. (Table 2046)
  3347. Values for VLM identifier:
  3348.  0001h    VLM.EXE        Virtual Loadable Modules manager (see also #2049)
  3349.  0010h    CONN.VLM    connection table manager (see also #2050)
  3350.  0020h    TRAN.VLM    transport protocol multiplexor (see also #2054)
  3351.  0021h    IPXNCP.VLM    transport protocol implementation using IPX (see #2056)
  3352.  0022h    TCPNCP.VLM    TCP/IP transport
  3353.  0030h    NWP.VLM        NetWare protocol multiplexor (see also #2058)
  3354.  0031h    BIND.VLM    bindery
  3355.  0032h    NDS.VLM        NetWare Directory Services (see also #2059)
  3356.  0033h    PNW.VLM        Personal NetWare
  3357.  0034h    RSA.VLM        RSA encryption for directory services re-authentication
  3358.  0040h    REDIR.VLM    DOS redirector (see also #2061)
  3359.  0041h    FIO.VLM        file I/O (see also #2063)
  3360.  0042h    PRINT.VLM    printer redirector (see also #2065)
  3361.  0043h    GENERAL.VLM    misc functions for NETx and REDIR (see also #2067)
  3362.  0050h    NETX.VLM    NetWare shell compatibility (see also #2069)
  3363.  0060h    AUTO.VLM    auto-reconnect/auto-retry
  3364.  0061h    SECURITY.VLM    enhanced security module
  3365.  0100h    NMR.VLM        NetWare management responder
  3366.  09F2h    DRVPRN.VLM    Desktop SNMP Services - Drive/Printer Mappings
  3367.  09F5h    SAA.VLM        SAA client API for Netware
  3368.  09F6h    IPXMIB.VLM    SNMP IPX-monitoring Module???
  3369.  09F7h    PNWMIB.VLM    Personal Netware SNMP Instrumentation Module
  3370.  09F8h    PNWTRAP.VLM    Personal Netware SNMP Trap Module
  3371.  09F9h    MIB2PROT.VLM    MIB-II Protocol Groups
  3372.  09FAh    MIB2IF.VLM    MIB-II Interfaces Group
  3373.  09FBh    NVT.VLM        ???
  3374.  09FCh    WSTRAP.VLM    Desktop SNMP Services - Trap Module
  3375.  09FDh    WSREG.VLM    Desktop SNMP Services - Registration Module
  3376.  09FEh    WSASN1.VLM    Desktop SNMP Services - ASN.1 Module
  3377.  09FFh    WSSNMP.VLM    Desktop SNMP Services - Agent Module
  3378.  
  3379. Format of VLM header:
  3380. Offset    Size    Description    (Table 2047)
  3381.  00h    DWORD    -> initialization entry point
  3382.  04h    DWORD    -> VLM API entry point
  3383.  08h    DWORD    -> ??? entry point
  3384.  0Ch    DWORD    -> ??? entry point
  3385.  10h    DWORD    -> ??? entry point
  3386.     ...
  3387.  var    DWORD    00000000h (end of entry point list)
  3388.       4 BYTEs    signature "NVlm"
  3389.     WORD    VLM identifier (see #2046)
  3390. ---v1.20+ ---
  3391.  1Eh    WORD    ???
  3392.  20h    WORD    Transient Switch Count
  3393.  22h    WORD    VLM Call Count
  3394.  24h    WORD    Offset ControlBlocks (See #2048)
  3395.  26h    WORD    Current VLMID
  3396.  28h    BYTE    Memory Type
  3397.         00h=Conventional 02h=EMS 04h=XMS
  3398.  29h    BYTE    Modules Loaded
  3399.  2Ah    WORD    BlockId
  3400.  2Ch    WORD    Transient Block
  3401.  2Eh    WORD    Global Segment
  3402.  30h  3    DWORDs    pointers to AsyncQueue head, tail, and s???
  3403.  3Ch  3    DWORDs    pointers BusyQueue head, tail, and s???
  3404.  48h    WORD    ReEntrance Level
  3405.  4Ah    WORD    Full Map Count
  3406.  4Ch    WORD    ???
  3407.  4Eh 80 BYTEs    ASCIZ configuration file filename
  3408. Note:    the number of entry points in the header is reported as "Func" in the
  3409.       VLM /D display.
  3410.  
  3411. Format of VLM Control Block for VLM v1.20 [array]:
  3412. Offset    Size    Description    (Table 2048)
  3413.  00h    WORD    Flag
  3414.  02h    WORD    VLM Identifier (See #2046)
  3415.  04h    WORD    Func
  3416.  06h    WORD    Maps
  3417.  08h    WORD    number of times called
  3418.  0Ah    WORD    ???
  3419.  0Ch    WORD    Transient Segment
  3420.  0Eh    WORD    Global Segment
  3421.  10h    WORD    Address Low
  3422.  12h    WORD    Address High
  3423.  14h    WORD    TSegSize
  3424.  16h    WORD    GSegSize
  3425.  18h    WORD    SSegSize
  3426.  1Ah    BYTE    VLMName[9] ASCIZ
  3427. Note:    this information is shown in VLM /d under the dashed line. There are 
  3428.       as many 35-byte blocks as modules loaded
  3429. SeeAlso: #2047
  3430.  
  3431. (Table 2049)
  3432. Call VLM Manager (VLM.EXE, ID 0001h) with:
  3433. Func    Description/Registers
  3434.  01h    VLM Notify
  3435.     BX = function
  3436.         0000h get version
  3437.         Return: AX = status (see #2045)
  3438.             BX = major version of VLM supported (0001h)
  3439.             CX = minor version of VLM supported (0000h)
  3440.  03h    VLM Statistics
  3441.  04h    VLM internal use
  3442.     BX = function
  3443.         0000h get interrupt vector (calls INT 21/AH=35h)
  3444.         0001h begin critical section (calls INT 2F/AX=1681h)
  3445.         0002h end critical section (calls INT 2F/AX=1682h)
  3446.         0003h ???
  3447.  
  3448. (Table 2050)
  3449. Call Connection Manager (CONN.VLM, ID 0010h) with:
  3450. Func    Description/Registers
  3451.  01h    Conn Get Version
  3452.     BX = function
  3453.         0000h get version
  3454.         Return: AX = status (see #2045)
  3455.             BX = major version of VLM supported (0001h)
  3456.             CX = minor version of VLM supported (0000h)
  3457.  03h    Conn Statistics
  3458.     CX = length of buffer
  3459.     ES:DI -> buffer for connection statistics (see #2051)
  3460.     Return: AX = status (0000h successful)
  3461.  04h    Conn Alloc Handle
  3462.     Return: AX = status (0000h successful)
  3463.         CX = connection handle
  3464.  05h    Conn Validate Handle
  3465.     CX = connection handle
  3466.     Return: AX = 0000h if valid handle
  3467.  06h    Conn Free Handle
  3468.     CX = connection handle
  3469.     Return: AX = status (0000h successful)
  3470.  07h    Conn Get Entry Field
  3471.     BH = connection parameter (see #2053)
  3472.     CX = connection handle
  3473.     DX = value if BH is non-array parameter
  3474.     DH = offset in array if BH is array parameter
  3475.     DL = number of bytes to copy if BH is array
  3476.     ES:DI -> return buffer if BH is array
  3477.     Return: AX = 0000h if successful
  3478.         DL/DX = value if non-array parameter
  3479.         DH = maximum number of bytes in buffer if array parameter
  3480.         DL = number of bytes copied if array
  3481.         BX destroyed
  3482.  08h    Conn Set Entry Field
  3483.     BH = connection parameter (see #2053)
  3484.     CX = connection handle
  3485.     DL/DX = value if BH is non-array parameter
  3486.     DH = offset in array if BH is array parameter
  3487.     DL = number of bytes to copy if BH is array
  3488.     DS:SI -> buffer if BH is array
  3489.     Return: AX = 0000h if successful
  3490.         DH = maximum number of bytes in buffer
  3491.         DL = number of bytes copied
  3492.         BX destroyed
  3493.  09h    Conn Reset Entry Field
  3494.     BH = connection parameter (see #2053)
  3495.     CX = connection handle
  3496.     Return: AX = 0000h if successful
  3497.         BX,DX destroyed
  3498.  0Ah    Conn Lookup Handle
  3499.     BL = lookup type (00h equal, 40h not equal)
  3500.     BH = connection parameter (see #2053)
  3501.     CX = connection handle, 0000h if first
  3502.     DL/DX = value if BH is non-array parameter
  3503.     DH = offset in array if BH is array parameter
  3504.     DL = number of bytes to copy if BH is array
  3505.     DS:SI (ES:DI???) -> buffer if BH is array
  3506.     Return: AX = 0000h if successful
  3507.         CX = handle matching given parameters
  3508.  0Dh    Conn Name Lookup
  3509.     CX = connection handle
  3510.     ES:DI -> 49-byte buffer for server name or 0000h:0000h
  3511.     Return: AX = 0000h if successful
  3512.         BX = length of server name
  3513.         ES:DI buffer filled if pointer not 0000h:0000h
  3514.  0Eh    Conn Name To Handle
  3515.     DS:SI -> uppercased server name
  3516.     CX = length of server name, 0000h if ASCIZ name
  3517.     Return: AX = error code or 0000h if successful
  3518.             CX = connection handle if successful
  3519.  0Fh    Conn Get Num Connections
  3520.     Return: AX = status (0000h if successful)
  3521.         DX = number of connections
  3522.         CX = segment of connection table 
  3523.             first entry in table (See #2052)
  3524.  
  3525. Format of VLM connection statistics:
  3526. Offset    Size    Description    (Table 2051)
  3527.  00h    WORD    total length of statistics record (including this word)
  3528.  02h    WORD    number of connection handles allocated
  3529.  04h    WORD    average name length (configured in NET.CFG)
  3530.  06h    WORD    maximum number of tasks (configured in NET.CFG)
  3531.  08h    WORD    number of failed "allocate handle" calls
  3532.  0Ah    WORD    number of failed "add name" calls
  3533.  0Ch    WORD    number of failed task calls
  3534. Note:    some versions of the NetWare requester reportedly do not implement
  3535.       this correctly
  3536. SeeAlso: #2050
  3537.  
  3538. Format of NetWare VLM Connection Table [array]:
  3539. Offset    Size    Description    (Table 2052)
  3540.  00h    WORD    Protocol VLMid      0032(NDS) 0031(BIND)        Func 07 equiv.
  3541.                   0033(PNW) 0000(unused)       bh=01h
  3542.  02h    BYTE    (connection status)
  3543.         bit 6: connection locked               bh=16h
  3544.         bit 5: authenticated                   bh=03h
  3545.         bit 4: permanent                   bh=02h
  3546.         bit 2: broadcast msg waiting               bh=12h
  3547.  03h    BYTE    (connection capabilities)
  3548.         bit 5: Large Internet Packets               none
  3549.         bit 3: Packet Burst Reset               bh=07h
  3550.         bit 2: Max I/O                       bh=06h
  3551.         bit 1: SFT3 change                   bh=05h
  3552.         bit 0: Packet Burst Support               bh=04h
  3553.  04h    WORD    reference count                       bh=09h
  3554.  06h    WORD    soft resource count                   bh=15h
  3555.  08h    BYTE    NCP Order Number                   bh=0Eh
  3556.  09h    BYTE    Server security options                   bh=14h
  3557.         bit 0: CRC enabled
  3558.         bit 1: packet signing required
  3559.         bit 5: packet signing enabled
  3560.  0Ah    BYTE    OS Major Version                   bh=08h
  3561.  0Bh    BYTE    OS Minor Version                   bh=08h
  3562.  0Ch    WORD    Hops to Server                       bh=0Ah
  3563.  0Eh    WORD    Maximum Packet Size for this connection           bh=0Bh
  3564.  10h    WORD    LIP Parameters                       bh=13h
  3565.  12h    WORD    NCP Request Type                   bh=10h
  3566.  14h    BYTE    NCP Sequence                       bh=0Ch
  3567.  15h    WORD    Connection Number                   bh=0Dh
  3568.  17h    BYTE    ???                           none
  3569.  18h    WORD    Transport VLMid 21(IPXNCP) 22(TCPNCP)           bh=0Fh      
  3570.  1Ah    BYTE    Node Address[4]                       bh=11h
  3571.  1Eh    BYTE    Network[6]                       bh=11h
  3572.  24h    BYTE    Socket[2]                       bh=11h  
  3573.  26h    BYTE    Local Target[6]                       bh=11h
  3574.  2Ch    WORD    Round Trip Time                       bh=11h
  3575.  2Eh    WORD    ???                           none
  3576. SeeAlso: #2050
  3577.  
  3578. (Table 2053)
  3579. Values for NetWare Connection Manager CEI (Connection Entry Information):
  3580.  number    flags    description
  3581.  00h    FR    error
  3582.  01h    WL    VLM id of transport protocol (NDS/BIND/PNW)
  3583.         00h = wildcard
  3584.  02h    FR    permanent flag (01h if connection is permanent)
  3585.  03h    F    authenticated flag (01h if connection is authenticated)
  3586.  04h    F    packet burst supported
  3587.  05h    FR    SFT3 change status
  3588.  06h    FR    connection needs maximum I/O transmission
  3589.  07h    FR    packet burst reset needed
  3590.  08h    W    server version
  3591.  09h    W    reference count (tasks using connection, 00h = dynamic)
  3592.  0Ah    W    distance to server associated with connection
  3593.  0Bh    W    maximum packet size supported by transport protocol
  3594.  0Ch    B    NCP sequence number
  3595.  0Dh    W    connection number
  3596.  0Eh    B    NCP order number
  3597.  0Fh    WL    VLM id for transport protocol
  3598.         00h = wildcard, 21h = IPX, 22h = TCP
  3599.  10h    W    NCP request type
  3600.  11h    A    transport specific buffer
  3601.         12 byte server address
  3602.         6 byte    router address
  3603.         2 byte round trip time
  3604.  12h    FR    broadcast message waiting
  3605.  13h    W    large internet packets supported
  3606.  14h    B    security options
  3607.         bit 0: CRC enabled
  3608.         bit 1: packet signing enabled
  3609.         bit 5: packet signing active
  3610.  15h    W    soft resource count
  3611.  16h    FR    connection locked
  3612. Note:    flag meanings
  3613.         F=flag value
  3614.         B=byte value
  3615.         W=word value
  3616.         A=array
  3617.         R=resettable
  3618.         L=settable only before authentication
  3619.         others=read only
  3620. SeeAlso: #2050
  3621.  
  3622. (Table 2054)
  3623. Call TRAN.VLM (VLM ID 0020h) with:
  3624. Func    Description/Registers
  3625.  01h    TRAN Get Version
  3626.     BX = function
  3627.         0000h get version
  3628.         Return: AX = status (see #2045)
  3629.             BX = major version of VLM supported (0001h)
  3630.             CX = minor version of VLM supported (0000h)
  3631.  03h    TRAN Statistics
  3632.  06h    TRAN Request Reply (see INT 21/AH=F2h)
  3633.     AL = request code (see #1355 at INT 21/AH=F2h)
  3634.     BH = error handler flag
  3635.         00h default error handler
  3636.         01h return network errors to caller
  3637.         02h handle network errors in requester
  3638.     BL = request list length (max 5 fragments) (see #2055)
  3639.     CX = connection handle
  3640.     DH = 00h (reserved)
  3641.     DL = reply list length (max 5 fragments) (see #2055)
  3642.     DS:SI -> address list (each element is DWORD address + WORD length)
  3643.     ES:DI -> address list
  3644.     Return: AX = error code, 0000h if successful
  3645.         BX,DX destroyed
  3646.         reply buffer updated if successful
  3647.  08h    TRAN Schedule/Cancel Event
  3648.  09h    TRAN Get Max Phys Size
  3649.     ??? = subfunction
  3650.         00h get maximum node size
  3651.         01h get maximum route size to specified server
  3652.  0Ah    TRAN Broadcast Mux
  3653.  
  3654. Format of TRAN.VLM request/reply fragment descriptor (array):
  3655. Offset    Size    Description    (Table 2055)
  3656.  00h    DWORD    address of buffer
  3657.  04h    WORD    length of buffer
  3658.  
  3659. (Table 2056)
  3660. Call IPXNCP.VLM (VLM ID 0021h) with:
  3661. Func    Description/Registers
  3662.  01h    IPX Get Version
  3663.     BX = function
  3664.         0000h get version
  3665.         Return: AX = status (see #2045)
  3666.             BX = major version of VLM supported (0001h)
  3667.             CX = minor version of VLM supported (0000h)
  3668.  03h    IPX Statistics
  3669.     CX = length of buffer
  3670.     ES:DI -> buffer for statistics (see #2057)
  3671.     Return:    AX = status (see #2045)
  3672.  06h    IPXNCP Request Reply???
  3673.     functionally equivalent to Tran Request Reply???
  3674.  
  3675. Format of NetWare IPX statistics:
  3676. Offset    Size    Description    (Table 2057)
  3677.  00h    WORD    size of statistics, including this word
  3678.  02h    DWORD    number of TRAN Request Reply calls made
  3679.  06h    WORD    number of user aborts
  3680.  08h    WORD    number of user retries
  3681.  0Ah    WORD    IPX receive errors
  3682.  0Ch    WORD    IPX send errors
  3683.  0Eh    WORD    number of unrecognized responses
  3684.  10h    WORD    number of bad connection numbers in requests
  3685.  12h    WORD    number of bad sequence responses
  3686.  14h    WORD    receive buffer overflows
  3687.  16h    WORD    number of times route to attached server was lost
  3688.  18h    WORD    number of times server responded "busy"
  3689.  1Ah    WORD    number of unknown "NCPRepCompCode" values
  3690.  1Ch    WORD    number of bad connection numbers in responses
  3691.  1Eh    WORD    padding for NETX compatibility
  3692.  20h    WORD    padding for NETX compatibility
  3693.  22h    WORD    number of attach requests to server without route
  3694.  24h    WORD    number of times server responded to attach without slot
  3695.  26h    WORD    number of times a server went down during a request
  3696.  28h    DWORD    same-server optimizations
  3697.  2Ch    WORD    local route changes
  3698.  2Eh    WORD    IPX CRC errors
  3699.  30h    WORD    number of user fails
  3700.  32h    BYTE    flag: CRCs enabled
  3701.  33h    BYTE    flag: LIP enabled
  3702.  34h    BYTE    flag: configurable NET error handler
  3703. SeeAlso: #2056
  3704.  
  3705. (Table 2058)
  3706. Call NWP.VLM (VLM ID 0030h) with:
  3707. Func    Description/Registers
  3708.  01h    NWP Get Version
  3709.     BX = function
  3710.         0000h get version
  3711.         Return: AX = status (see #2045)
  3712.             BX = major version of VLM supported (0001h)
  3713.             CX = minor version of VLM supported (0000h)
  3714.  03h    NWP Statistics
  3715.  04h    NWP Connect
  3716.  05h    NWP Disconnect
  3717.  06h    NWP Attach
  3718.  08h    NWP Login
  3719.  09h    NWP Logout
  3720.  0Ah    NWP Get Bindery Object/Get Message Handler
  3721.     BX = subfunction
  3722.         0002h set workstation's broadcast message mode
  3723.         0003h get object ID for object name
  3724.         0004h get object name for object ID
  3725.         0005h retrieve broadcast message
  3726.  0Ch    NWP context (passed through to NDS.VLM's function 0Ch) (see #2059)
  3727.  0Eh    NWP Ordered Send To All
  3728.  0Fh    NWP Preferred Handler
  3729.     BX = subfunction
  3730.         0000h get preferred connection name
  3731.         DX = VLM ID (NDS/BIND/PNW)
  3732.         ES:DI -> 49-byte buffer for connection name
  3733.         Return: ES:DI buffer filled
  3734.         0001h set preferred connection name
  3735.         DX = VLM ID (NDS/BIND/PNW)
  3736.         CX = length of connection name (may be 0000h, max 48)
  3737.         DS:SI -> name of preferred connection
  3738.         0002h get preferred connection ID
  3739.         DX = VLM ID (NDS/BIND/PNW)
  3740.         Return: AX = status
  3741.             CX = connection handle if successful
  3742.         0003h get server address
  3743.         CX = connection handle or 0000h
  3744.         DS:SI -> name to be resolved
  3745.         ES:DI -> 12-byte buffer for server address
  3746.  10h    NWP ???
  3747.     BX = subfunction
  3748.         0001h get security flags (see also INT 21/AX=B301h)
  3749.         Return: BX:CX indicates signature level
  3750.                 = 0100h:0000h if signature level=0
  3751.                 = 0300h:0000h if signature level=1
  3752.                 = 0302h:0000h if signature level=2
  3753.                 = 0302h:0202h if signature level=3
  3754.         0002h create session keys (see also INT 21/AX=B302h)
  3755.         CX = server connection handle
  3756.         DS:SI -> 24-byte input buffer
  3757.         0004h set security flags (see also INT 21/AX=B304h)
  3758.         BL:CL = new flags
  3759.         0006h renegotiate security level (see also INT 21/AX=B306h)
  3760.         CX = server connection number (01h-08h)
  3761.  
  3762. (Table 2059)
  3763. Call NDS.VLM (VLM ID 0032h) with:
  3764. Func    Description/Registers
  3765.  01h    NDS Get Version
  3766.     BX = function
  3767.         0000h get version
  3768.         Return: AX = status (see #2045)
  3769.             BX = major version of VLM supported (0001h)
  3770.             CX = minor version of VLM supported (0000h)
  3771.  03h    NDS Statistics
  3772.  06h    NDS Attach
  3773.     CX = allocated connection handle
  3774.     DS:SI -> server address
  3775.  08h    NDS Fragment Requst
  3776.     Return: AX = 8836h (invalid parameter)
  3777.     Note:    this function was documented but does not work
  3778.  0Ch    NDS context
  3779.     BX = subfunction
  3780.         0000h get default name context
  3781.         CX = length of buffer for default context
  3782.         ES:DI -> buffer to receive name
  3783.         Return: ES:DI buffer filled
  3784.         0001h set default context
  3785.         CX = length of new default context name
  3786.         DS:SI -> context name
  3787.         0002h read from TDS
  3788.         CX = reply buffer length
  3789.         DX = 0110h ???
  3790.         SI = offset in TDS
  3791.         ES:DI -> reply buffer
  3792.         0003h write to TDS
  3793.         0005h "NWDSChangeResourceConnection/Lock Connection"
  3794.         CX = connection handle
  3795.         DL = subfunction (00h-09h)
  3796.             04h = NWDSChangeResourceOnConnection
  3797.             07h = NWDSChangeResourceOnConnection
  3798.             08h = NWDSLockConnection
  3799.         0006h NDS change connection state (internal)
  3800.         CX = connection handle
  3801.         AL = 00h or 01h
  3802.         0007h "NWDSSetMonitoredConnection"
  3803.         AX = subfunction
  3804.             0001h get monitored connection
  3805.             Return: CX = connection handle???
  3806.             0002h set monitored connection
  3807.             CX = connection handle???
  3808.         0008h send NDS request
  3809.         AX = NDS function
  3810.         CX = connection handle
  3811.         DS:SI -> request buffer descriptor (see #2060)
  3812.         ES:DI -> reply buffer descriptor (see #2060)
  3813.         000Ah set NDS CEI Info
  3814.         DL = buffer length
  3815.         DS:SI -> input buffer
  3816.  
  3817. Format of NetWare NDS request/reply buffer descriptor:
  3818. Offset    Size    Description    (Table 2060)
  3819.  00h    DWORD    -> buffer
  3820.  04h    WORD    length of buffer in bytes
  3821. SeeAlso: #2059
  3822.  
  3823. (Table 2061)
  3824. Call REDIR.VLM (VLM ID 0040h) with:
  3825. Func    Description/Registers
  3826.  01h    Redir Get Version
  3827.     BX = function
  3828.         0000h get version
  3829.         Return: AX = status (see #2045)
  3830.             BX = major version of VLM supported (0001h)
  3831.             CX = minor version of VLM supported (0000h)
  3832.  03h    Redir Statistics
  3833.  04h    Redir Build SFT (see INT 21/AH=B4h"NetWare")
  3834.     CX = connection handle
  3835.     ES:DI -> SFT build request (see #2062)
  3836.     Return: AX = 0000h if successful
  3837.             BX = DOS file handle
  3838.  05h    Redir DOS To NW Handle
  3839.  08h    Redir Specific
  3840.     BX = 0000h get item
  3841.         DS:SI -> ASCIZ string "LPTx" (x='1'-'9') or drive spec ("d:")
  3842.         ES:DI -> 512-byte reply buffer for
  3843.               "\\server\resource",00h,"path",00h
  3844.  
  3845. Format of NetWare SFT build request:
  3846. Offset    Size    Description    (Table 2062)
  3847.  00h  6 BYTEs    NetWare handle
  3848.  06h    WORD    reserved for internal use
  3849.  08h 14 BYTEs    ASCIZ filename
  3850.  16h    BYTE    DOS file attributes
  3851.         bit 7: file is shareable
  3852.  17h    BYTE    reserved
  3853.  18h    LONG    file size
  3854.  1Ch    WORD    creation date
  3855.  1Eh    WORD    last access date
  3856.  20h    WORD    last update date
  3857.  22h    WORD    last update time
  3858.  
  3859. (Table 2063)
  3860. Call File I/O FIO.VLM (VLM ID 0041h) with:
  3861. Func    Description/Registers
  3862.  01h    FIO Get Version
  3863.     BX = function
  3864.         0000h get version
  3865.         Return: AX = status (see #2045)
  3866.             BX = major version of VLM supported (0001h)
  3867.             CX = minor version of VLM supported (0000h)
  3868.  03h    FIO Statistics
  3869.     CX = length of buffer
  3870.     ES:DI -> buffer for statistics (see #2064)
  3871.     Return: AX = status (0000h if successful)
  3872.         buffer filled if successful
  3873.  04h    FIO Remote Copy
  3874.  
  3875. Format of NetWare FIO statistics:
  3876. Offset    Size    Description    (Table 2064)
  3877.  00h    WORD    length of statistics record (including this word)
  3878.  02h    WORD    number of read requests
  3879.  04h    WORD    number of write requests
  3880.  06h    WORD    number of cache read hits
  3881.  08h    WORD    number of cache write hits
  3882.  0Ah    WORD    number of cacheable files with free blocks
  3883.  0Ch    WORD    number of cacheable files without free blocks
  3884.  0Eh    WORD    number of standard read requests
  3885.  10h    WORD    number of standard write requests
  3886.  12h    WORD    number of burst read requests
  3887.  14h    WORD    number of burst write requests
  3888.  16h    BYTE    flag: cache writes enabled
  3889.  17h    BYTE    flag: true commits enabled
  3890.  18h    WORD    number of cache blocks
  3891.  1Ah    WORD    size of a cache buffer
  3892.  1Ch    WORD    number of ECBs for packet bursts (0000h if bursts disabled)
  3893. SeeAlso: #2063
  3894.  
  3895. (Table 2065)
  3896. Call PRINT.VLM (VLM ID 0042h) with:
  3897. Func    Description/Registers
  3898.  01h    Print Get Version
  3899.     BX = function
  3900.         0000h get version
  3901.         Return: AX = status (see #2045)
  3902.             BX = major version of VLM supported (0001h)
  3903.             CX = minor version of VLM supported (0000h)
  3904.  03h    Print Statistics
  3905.  04h    Print Get/Set Data
  3906.     BX??? = subfunction
  3907.         00h set printer control flags
  3908.         01h get printer control flags
  3909.         02h set extended printer control flags
  3910.         03h get extended printer control flags
  3911.  05h    Print Open Capture File
  3912.  07h    Print Get Num Of Printers
  3913.  08h    Print Redirection
  3914.     BX = subfunction
  3915.         0000h redirect device to queue
  3916.         AX = length of queue name, 0000h to use queue ID
  3917.         DS:SI -> uppercased ASCIZ queue name
  3918.         ES:DI -> queue ID, 0000h:0000h to use queue name
  3919.         0001h test whether device is redirected
  3920.         0002h cancel redirection
  3921.         0003h redirect device to file
  3922.         AX = 0000h or 4E57h ('NW')
  3923.         ES:DI -> ASCIZ path of file
  3924.         0004h get extended redirection information
  3925.     CX = connection handle
  3926.     DX = printer (0=LPT1)
  3927.     Return: AX = 0000h if successful
  3928.  09h    Print Flush And Close Job
  3929.  0Ch    Print Get/Set Banner Name
  3930.  
  3931. Format of PRINT.VLM standard print control information:
  3932. Offset    Size    Description    (Table 2066)
  3933.  00h    BYTE    PFStatus (reserved, 00h)
  3934.  01h    BYTE    print flags (default 80h)
  3935.         bit 2: release job for printing if capture interrupted
  3936.         bit 3: suppress form feed
  3937.         bit 4: notify
  3938.         bit 6: text file
  3939.         bit 7: print banner
  3940.  02h    BYTE    tab size (01h-12h, default 08h)
  3941.  03h    BYTE    number of copies (default 01h)
  3942.  04h    BYTE    ???
  3943.  05h    BYTE    form type to be mounted in printer (default 00h)
  3944.  06h    BYTE    reserved (00h)
  3945.  07h 14 BYTEs    banner
  3946.  15h    BYTE    capture printer (LPT) number
  3947.  16h    WORD    capture timeout in seconds
  3948.  18h    BYTE    job concatenation flag (00h or 01h, default 00h)
  3949.  19h    BYTE    maximum lines per page (default 66)
  3950.  1Ah    BYTE    ???
  3951.  1Bh    BYTE    maximum characters per line (default 132)
  3952.  1Ch    BYTE    ???
  3953.  1Dh 13 BYTEs    name of form to be mounted in printer
  3954.  2Ah    BYTE    flag: capture active (00h or FFh, default 00h)
  3955.  2Bh    BYTE    flag: capturing to file (00h or 01h, default 00h)
  3956.  2Ch    BYTE    flag: timeout field is being decremented (default 00h)
  3957.  2Dh    DWORD    -> printer setup string
  3958.  31h    DWORD    -> printer reset string
  3959.  35h    BYTE    reserved (01h)
  3960.  36h    BYTE    flag: job has started printing (00h or FFh, default 00h)
  3961.  37h    BYTE    flag: job placed in queue (00h or FFh, default 00h)
  3962.  38h    BYTE    flag: PJobValid (00h or FFh, default 00h)
  3963.  39h    DWORD    print-queue ID
  3964.  3Dh    BYTE    low byte of print-job number (default 00h)
  3965.  3Eh    BYTE    ???
  3966.  3Fh    BYTE    number of chars in INT 17h print cache buffer (default 00h)
  3967.  40h    BYTE    ???
  3968.  41h    BYTE    high byte of print-job number (default 00h)
  3969. SeeAlso: #2065
  3970.  
  3971. (Table 2067)
  3972. Call GENERAL.VLM (VLM ID 0043h) with:
  3973. Func    Description/Registers
  3974.  01h    Gen Get Version
  3975.     BX = function
  3976.         0000h get version
  3977.         Return: AX = status (see #2045)
  3978.             BX = major version of VLM supported (0001h)
  3979.             CX = minor version of VLM supported (0000h)
  3980.  03h    Gen Statistics
  3981.     CX = length of statistics buffer
  3982.     ES:DI -> buffer for statistics (see #2068)
  3983.     Return: AX = status (see #2045)
  3984.  04h    Gen Get/Set Primary
  3985.     BX = subfunction
  3986.         0001h get primary connection
  3987.         CX = primary connection handle to be retrieved
  3988.         Return: AX = status (see #2045)
  3989.             CX = primary connection handle
  3990.         0002h set primary connection
  3991.         CX = primary connection handle to be stored
  3992.         Return: AX = status (see #2045)
  3993.  06h    Gen Specific
  3994.     BX = subfunction
  3995.         0000h get command processor and master environment addresses
  3996.         Return: DX = segment of master environment
  3997.             ES:DI -> command processor's private COMSPEC= copy
  3998.         0001h get default or primary connection
  3999.         Return: AX = status (0000h successful)
  4000.             CX = connection handle if successful
  4001.         0002h last queue information
  4002.         AL = operation
  4003.             00h zap
  4004.             01h set
  4005.             02h get
  4006.         DI:DX = queue file handle
  4007.         CX = connection handle
  4008.         Return: AX = status (0000h successful)
  4009.             DI:DX = queue file handle
  4010.             CX = connection handle or 0000h if queue info invalid
  4011.         0003h get/set machine name(s)
  4012.         AX = name type
  4013.             00h get short machine name
  4014.             02h get long machine name
  4015.             04h set short machine name
  4016.             06h set long machine name
  4017.             08h get DOS name
  4018.             0Ah set DOS name
  4019.         ES:SI -> ASCIZ name if setting
  4020.         Return: AX = status (0000h if successful)
  4021.             ES:SI -> ASCIZ name if getting
  4022.         0004h set per-task EXEC search mode
  4023.         Return: AX = status (0000h if successful)
  4024.  09h    Gen Return Drive Info
  4025.     BX = subfunction
  4026.         0000h get first available drive
  4027.         Return: AX = status (see #2045)
  4028.             BX = drive letter of first drive
  4029.         0001h get Lastdrive
  4030.         Return: AX = status (see #2045)
  4031.             CH = number lastdrive 1=A: - 1Ah=Z:
  4032.  
  4033. Format of NetWare GENERAL.VLM statistics:
  4034. Offset    Size    Description    (Table 2068)
  4035.  00h    WORD    size of statistics record, including this word
  4036.  02h    DWORD    previous INT 21 vector
  4037. SeeAlso: #2067
  4038.  
  4039. (Table 2069)
  4040. Call NETX.VLM (VLM ID 0050h) with:
  4041. Func    Description/Registers
  4042.  01h    NetX Get Version
  4043.     BX = function
  4044.         0000h get version
  4045.         Return: AX = status (see #2045)
  4046.             BX = major version of VLM supported (0001h)
  4047.             CX = minor version of VLM supported (0000h)
  4048.  03h    NetX Statistics
  4049.  
  4050. (Table 2070)
  4051. Call SECURITY.VLM (VLM ID 0061h) with:
  4052. Func    Description/Registers
  4053.  01h    Security Get Version
  4054.     BX = function
  4055.         0000h get version
  4056.         Return: AX = status (see #2045)
  4057.             BX = major version of VLM supported (0001h)
  4058.             CX = minor version of VLM supported (0000h)
  4059.  03h    Security Statistics
  4060.  04h    ???
  4061.     AL = subfunction
  4062.         01h compute session key
  4063.         DS:SI -> 24-byte input buffer
  4064.         ES:DI -> 8-byte output buffer
  4065. --------N-2F7A20BX0001-----------------------
  4066. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET VLM CallA ADDRESS
  4067.     AX = 7A20h
  4068.     BX = 0001h
  4069. Return: AX = 0000h if request was handled
  4070.         ES:BX -> CallA entry point (see #2071)
  4071.  
  4072. (Table 2071)
  4073. Call VLM CallA entry point with:
  4074.     AX = function
  4075.         0000h submit
  4076.         0001h cancel (not implemented)
  4077.     ES:DI -> Overlay Asynchronous Control Block structure (see #2072)
  4078.  
  4079. Format of Overlay Asynchronous Control Block (OACB):
  4080. Offset    Size    Description    (Table 2072)
  4081.  00h    DWORD    link to next OACB, 0000h:0000h if last
  4082.  04h    DWORD    callback address or 0000h:0000h
  4083.  08h    BYTE    InUse flag (00h if complete)
  4084.  09h    BYTE    flag, reserved for VLM use
  4085.  0Ah    WORD    destination VLM
  4086.  0Ch    WORD    destination function
  4087.  0Eh    WORD    temporary storage for VLM.EXE
  4088.  10h  6 BYTEs    reserved
  4089.  16h  6 DWORDs    EAX,EBX,ECX,EDX,ESI,EDI
  4090.  2Eh  4 WORDs    DS,ES,FS,GS (FS and GS not used)
  4091. --------N-2F7A20BX0002-----------------------
  4092. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET VLM MULTIPLEX ADDRESS
  4093.     AX = 7A20h
  4094.     BX = 0002h
  4095. Return: AX = 0000h
  4096.     ES:BX -> VLM multiplex entry point (see #2073)
  4097. Note:    for v1.10, this function is only available while VLM.EXE is loading
  4098.       the .VLM modules, because ES is destroyed on return
  4099.  
  4100. (Table 2073)
  4101. Call DOS Requester entry point with:
  4102.     BX = function???
  4103.         0000h
  4104.         DX = ???
  4105.         DI = ???
  4106.         BP = ???
  4107.         0002h
  4108.         CX = ???
  4109.         0003h
  4110.         DX = ???
  4111.         BP = ???
  4112.         0006h
  4113.         AH = subfunction???
  4114.         AL = ???
  4115.         STACK: variable (0, 4, 10, 14 bytes seen)
  4116. --------N-2F7A20BX0003-----------------------
  4117. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET VLM PARSE API ADDRESS
  4118.     AX = 7A20h
  4119.     BX = 0003h
  4120. Return: AX = 0000h if request was handled
  4121.         ES:BX -> VLM parse API entry point
  4122. --------N-2F7A20BX0004-----------------------
  4123. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET VLM MULTICAST CALLOUT
  4124.     AX = 7A20h
  4125.     BX = 0004h
  4126. Return: AX = 0000h if request was handled
  4127.         ES:BX -> VLM multicast data (see #2074)
  4128.  
  4129. Format of DOS Requester data:
  4130. Offset    Size    Description    (Table 2074)
  4131.  00h    DWORD    pointer to ??? (code)
  4132.  04h  4 BYTEs    ???
  4133.  08h    DWORD    pointer to ??? (code) (see #2075)
  4134.     ???
  4135.  
  4136. (Table 2075)
  4137. Call offset 08h function with:
  4138.     AL = function (00h-07h)
  4139.     ???
  4140. Return: ???
  4141. --------N-2F7A20BX0005-----------------------
  4142. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET VLM INT 24 ADDRESS
  4143.     AX = 7A20h
  4144.     BX = 0005h
  4145. Return: AX = 0000h if request was handled
  4146.         ES:BX -> VLM INT 24 handler
  4147. --------N-2F7A20BX0006-----------------------
  4148. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET ??? ENTRY POINT
  4149.     AX = 7A20h
  4150.     BX = 0006h
  4151. Return: AX = 0000h if request was handled
  4152.         ES:BX -> ??? entry point (RETF in v1.03 and v1.10)
  4153. --------N-2F7A20BX0007-----------------------
  4154. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET ??? ENTRY POINT
  4155.     AX = 7A20h
  4156.     BX = 0007h
  4157. Return: AX = 0000h
  4158.     ES:BX -> ??? entry point (RETF in v1.03 and v1.10)
  4159. --------N-2F7A20BX0008-----------------------
  4160. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET ??? ENTRY POINT
  4161.     AX = 7A20h
  4162.     BX = 0008h
  4163. Return: AX = 0000h
  4164.     ES:BX -> ??? entry point (RETF in v1.03 and v1.10)
  4165. --------N-2F7A20BX0080-----------------------
  4166. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET ??? ENTRY POINT
  4167.     AX = 7A20h
  4168.     BX = 0080h
  4169. Return: AX = 0000h
  4170.     ES:BX -> ??? entry point (RETF in v1.03 and v1.10)
  4171. Note:    this function is identical to AX=7A20h/BX=0006h in v1.03 and v1.10
  4172. --------N-2F7A20BX0081-----------------------
  4173. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET ??? ENTRY POINT
  4174.     AX = 7A20h
  4175.     BX = 0081h
  4176. Return: AX = 0000h
  4177.     ES:BX -> ??? entry point (RETF in v1.03 and v1.10)
  4178. Note:    this function is identical to AX=7A20h/BX=0007h in v1.03 and v1.10
  4179. --------N-2F7A20BX0082-----------------------
  4180. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET ??? ENTRY POINT
  4181.     AX = 7A20h
  4182.     BX = 0082h
  4183. Return: AX = 0000h
  4184.     ES:BX -> ??? entry point (RETF in v1.03 and v1.10)
  4185. Note:    this function is identical to AX=7A20h/BX=0008h in v1.03 and v1.10
  4186. --------N-2F7A21-----------------------------
  4187. INT 2F C - Novell NetWare - DOS Requester - BROADCAST CALLBACK
  4188.     AX = 7A21h
  4189.     CX = server connection (FFFFh if message from Personal NetWare user)
  4190.     interrupts disabled
  4191. Return: CX = 0000h if broadcast handled
  4192.     interrupts disabled
  4193. Note:    this function is only linked into INT 2F when INT 21/AH=DEh/DL=05h
  4194.       has been issued
  4195. SeeAlso: AX=7A22h,AX=7A85h,INT 21/AH=DEh
  4196. --------N-2F7A22-----------------------------
  4197. INT 2F C - Novell NetWare - DOS Requester - BROADCAST/SFT3 INFORM
  4198.     AX = 7A22h
  4199.     DL = function
  4200.         21h ('!') broadcast waiting for workstation
  4201.         40h ('@') SFT3 server-change inform
  4202.     BX = transport type
  4203.         0021h IPX
  4204.         0022h TCP
  4205.     ES:SI -> transport-specific data block
  4206.         (ECB for IPX, undefined for TCP)
  4207.     interrupts disabled
  4208. Return: AX = 0000h if event handled, unchanged if not
  4209.     interrupts disabled
  4210. Note:    this callback is made from within a hardware interrupt handler; a
  4211.       separate call to AX=7A21h is made once the system is in a safe
  4212.       state for receiving the message
  4213. SeeAlso: AX=7A21h
  4214. --------N-2F7A2F-----------------------------
  4215. INT 2F U - Novell NetWare - IPXODI v2.12 - GET GNMA SUPPORT
  4216.     AX = 7A2Fh
  4217. Return: AX = 0000h if supported and active
  4218.         BX = support level (0001h)
  4219.         ES:DI -> GNMA entry point (see #2076)
  4220. Program: GNMA is the Generic NetWare Management Agent
  4221. Note:    IPXODI v2.12 is distributed as part of the Personal NetWare system
  4222.       bundled with Novell DOS 7
  4223. SeeAlso: INT 7A/BX=001Fh
  4224.  
  4225. (Table 2076)
  4226. Call IPXODI GNMA entry point with:
  4227.     BX = function
  4228.         0000h ???
  4229.         ES:SI -> ??? data
  4230.         0001h ???
  4231.         AX = ???
  4232.         Return: ES:SI -> ??? data
  4233.         0002h get ??? address
  4234.         Return: ES:SI -> ??? buffer
  4235.         0003h send SPX packet???
  4236.         AL = ???
  4237.         CX = ???
  4238.         DX = ???
  4239.         SI = ???
  4240.         Return: ??? (registers from a call to INT 7A/BX=0016h)
  4241. Return: BX corrupted
  4242. --------N-2F7A2FBX0EDC-----------------------
  4243. INT 2F U - Personal NetWare - HRMIB - UNINSTALL
  4244.     AX = 7A2Fh
  4245.     BX = 0EDCh ('EDC' = Novell European Development Center)
  4246. Return: ???
  4247. SeeAlso: AX=7AA0h
  4248. --------N-2F7A40-----------------------------
  4249. INT 2F U - Novell NetWare - TCP/IP Protocol Stack - INSTALLATION CHECK
  4250.     AX = 7A40h
  4251. Return: AX = 7AFFh if installed
  4252.         BX = ??? bit flags (see #2077)
  4253.         CX = version (CH=major, CL=minor)
  4254.         DX = 0000h
  4255.         ES:DI -> entry point for TCP/IP stack (see #2078)
  4256. Notes:    Novell's LAN Workplace for DOS TCPIP.EXE also supports this interface
  4257.     this function is also supported by the Beame&Whiteside BWLWP40 shim,
  4258.       but it only returns AL and ES:DI, and does not support AX=7A41h
  4259. SeeAlso: AX=7A41h,INT 15/AX=DE2Eh,INT 60"Excelan"
  4260.  
  4261. Bitfields for returned BX:
  4262. Bit(s)    Description    (Table 2077)
  4263.  0    ???
  4264.  1    ???
  4265.  15-2    reserved???
  4266.  
  4267. (Table 2078)
  4268. Call NetWare TCP/IP entry point with:
  4269.     ES:SI -> parameter block (see #2079)
  4270. Return: ES:SI parameter block updated
  4271.  
  4272. Format of NetWare TCP/IP parameter block:
  4273. Offset    Size    Description    (Table 2079)
  4274.  00h  4 BYTEs    ???
  4275.  04h    WORD    (ret) ???
  4276.  06h    WORD    (ret) ???
  4277.  08h    DWORD    -> FAR routine called if bit 7 of function code set
  4278.  0Ch    BYTE    flags???
  4279.  0Dh  7 BYTEs    ???
  4280.  14h    BYTE    (ret) ???
  4281.  15h    BYTE    (call) function code (bit 7 set if ???) (see #2080)
  4282.  16h    BYTE    socket number
  4283.  17h    BYTE    (ret) result or error code
  4284.  18h  4 WORDs    parameter words 0 to 3 (see #2080 for usage)
  4285.  20h    WORD    length of packet sent/received
  4286.  22h    WORD    number of pointer/length pairs following
  4287.  24h 6N BYTEs    buffer descriptors, each
  4288.         Offset    Size    Description
  4289.          00h    DWORD    pointer to buffer
  4290.          04h    WORD    length of buffer
  4291.  
  4292. (Table 2080)
  4293. Values for NetWare TCP/IP function code:
  4294.  01h    "accept"
  4295.  02h    "bind"
  4296.  03h    close socket
  4297.     Call:    socket number field set
  4298.  04h    "connect"
  4299.  05h    get IP address
  4300.     Call:    socket number field set to 0000h
  4301.     Return:    parameter words 1 and 2 contain caller's IP address
  4302.  06h    get hardware address
  4303.  07h    "getpeername"
  4304.  08h    get socket name
  4305.  0Ah    get netmask
  4306.  0Bh    "ioctl"
  4307.  0Ch    "listen"
  4308.  0Dh    "select"
  4309.  10h    "shutdown"
  4310.  11h    open socket
  4311.     Call:    socket number field set to 0000h
  4312.         parameter word 0 = desired protocol (6 = TCP, 17 = UDP)
  4313.     Return: socket number set
  4314.  12h    "read"
  4315.  13h    "recvfrom"
  4316.     Call:    socket number set
  4317.         packet length and buffer descriptors set
  4318.     Return:    packet length and receive buffers updated
  4319.         parameter word 1 = source port number
  4320.         parameter words 2 and 3 = source IP address
  4321.  14h    "write"
  4322.  15h    "sendto"
  4323.     Call:    socket number set
  4324.         flags field = ???
  4325.         parameter word 0 = 0000h
  4326.         parameter word 1 = destination port number
  4327.         parameter words 2 and 3 = destination IP address
  4328.         packet length and buffer descriptors set
  4329.  16h    get BOOTP data
  4330. Note:    these functions are based on the Unix socket interface
  4331. --------N-2F7A41-----------------------------
  4332. INT 2F - Novell NetWare - TCP/IP Protocol Stack - WINDOWS SUPPORT???
  4333.     AX = 7A41h
  4334.     ES:DI -> FAR entry point for ??? (will be called with BX=1,2,3,4)
  4335. Return: AX = 7AFFh if supported
  4336.         BX = ??? (see #2077)
  4337.         CX = version (CH=major, CL=minor)
  4338.         DX = 0000h
  4339.         ES:SI -> DWORD containing passed value of ES:DI
  4340.         ES:DI -> entry point for TCP/IP stack
  4341. Notes:    Novell's LAN Workplace for DOS TCPIP.EXE also supports this interface
  4342.     the pointer which is set to ES:DI is cleared to 0000h:0000h when
  4343.       a Windows exit broadcast is received
  4344. SeeAlso: AX=7A40h
  4345. --------N-2F7A42-----------------------------
  4346. INT 2F - Novell NetWare - TCPIP.EXE v4.1 - GET ??? ENTRY POINT
  4347.     AX = 7A42h
  4348. Return: AX = 7AFFh if supported
  4349.         ES:DI -> ??? entry point (see #2081)
  4350.  
  4351. (Table 2081)
  4352. Call NetWare TCPIP.EXE entry point with:
  4353.     DX = ???
  4354.     ES:DI -> ??? (see #2082)
  4355. Return: AX = 0000h
  4356.     other registers destroyed
  4357.  
  4358. Format of data buffer:
  4359. Offset    Size    Description    (Table 2082)
  4360.  00h    WORD    offset of WORD ??? or 0000h
  4361.  02h    WORD    offset of DWORD ??? or 0000h
  4362.  04h    WORD    offset of DWORD ??? or 0000h
  4363. --------N-2F7A43-----------------------------
  4364. INT 2F - Novell NetWare - TCPIP.EXE v4.1 - GET ???
  4365.     AX = 7A43h
  4366. Return: AX = 7AFFh if supported
  4367.         DX = offset of ???
  4368. SeeAlso: AX=7A44h
  4369. --------N-2F7A44-----------------------------
  4370. INT 2F - Novell NetWare - TCPIP.EXE v4.1 - SET ???
  4371.     AX = 7A44h
  4372.     DX = offset of ??? (see AX=7A43h)
  4373. Return: AX = 7AFFh if supported
  4374. SeeAlso: AX=7A43h
  4375. --------N-2F7A4C-----------------------------
  4376. INT 2F - Novell NetWare - TCPIP.EXE v4.1 - GET ???
  4377.     AX = 7A4Ch
  4378. Return: AX = 7AFFh if supported
  4379.         BX = ??? (0037h)
  4380.         CX = ??? (001Ch)
  4381. --------N-2F7A4DBX0001-----------------------
  4382. INT 2F - Novell NetWare - ???
  4383.     AX = 7A4Dh
  4384.     BX = 0001h
  4385.     ES:DI -> ???
  4386. Return: AL = FFh if ???
  4387.         ES:DI -> ???
  4388. Note:    called by NETBIOS.EXE v3.01
  4389. --------N-2F7A4E-----------------------------
  4390. INT 2F - Novell LAN Workplace for DOS - RARPD.EXE - INSTALLATION CHECK
  4391.     AX = 7A4Eh
  4392. Return: AX = 7AFFh if installed
  4393. SeeAlso: AX=7A4Fh"RARPD"
  4394. --------N-2F7A4F-----------------------------
  4395. INT 2F - Novell LAN Workplace for DOS - RARPD.EXE - UNINSTALL
  4396.     AX = 7A4Fh
  4397. Return: AX = 7AFFh if installed
  4398.     DX,ES destroyed
  4399. Note:    this call conflicts with SNMP.EXE (both RARPD and SNMP are supplied
  4400.       with LAN Workplace for DOS!), such that running SNMP will uninstall
  4401.       RARPD as SNMP checks whether it is already installed!
  4402. SeeAlso: AX=7A4Eh"RARPD",AX=7A4Fh/BX=0001h
  4403. --------N-2F7A4FBX0001-----------------------
  4404. INT 2F - Novell NetWare - SNMP.EXE - INSTALLATION CHECK
  4405.     AX = 7A4Fh
  4406.     BX = 0001h
  4407. Return: AX = 7AFFh if installed
  4408. Note:    this call conflicts with RARPD.EXE (both SNMP and RARPD are supplied
  4409.       with LAN Workplace for DOS!), such that running SNMP will uninstall
  4410.       RARPD as SNMP checks whether it is already installed!
  4411. SeeAlso: AX=7A4Fh"RARPD",AX=7A4Fh/BX=0002h
  4412. --------N-2F7A4FBX0002-----------------------
  4413. INT 2F - Novell NetWare - SNMP.EXE - ???
  4414.     AX = 7A4Fh
  4415.     BX = 0002h
  4416. Return: AL = status
  4417.         4Fh if failed
  4418.         FFh if successful
  4419. SeeAlso: AX=7A4Fh/BX=0001h
  4420. --------N-2F7A80-----------------------------
  4421. INT 2F C - Novell NetWare - SHELL 3.01d BROADCAST - ABNORMAL EXIT
  4422.     AX = 7A80h
  4423. Return: nothing
  4424. Notes:    called on abnormal exit of the NetWare shell to notify other Novell
  4425.       TSRs that it is unsafe to call the shell in the future.
  4426.     must be passed through so that all interested programs see the exit
  4427.     on receiving this call, IPXODI clears an internal pointer to a
  4428.       default value; Novell's NETBIOS.EXE clears its INT 21h pointer to
  4429.       0000h:0000h and stops calling it
  4430. SeeAlso: AX=7A81h
  4431. --------N-2F7A81-----------------------------
  4432. INT 2F C - Novell NetWare - SHELL 3.01d BROADCAST - SET SHELL INT 21 HANDLER
  4433.     AX = 7A81h
  4434.     CX:DX -> shell's INT 21h entry point
  4435. Return: nothing
  4436. Notes:    the shell calls this function as it loads to allow interested TSRs
  4437.       and drivers to make a local copy of the shell's entry point
  4438.     must be passed through so that all interested programs see it
  4439. --------N-2F7A85-----------------------------
  4440. INT 2F C - Novell NetWare - shell 3.01 - BROADCAST INFORM
  4441.     AX = 7A85h
  4442.     CX = broadcast server number
  4443. Return: CX = 0000h if broadcast message handled by another program
  4444.     CX unchanged if broadcast not handled
  4445. SeeAlso: AX=7A21h
  4446. --------N-2F7A90-----------------------------
  4447. INT 2F U - Novell NetWare - NETBIOS.EXE 3+ - INSTALLATION CHECK
  4448.     AX = 7A90h
  4449. Return: AL = 00h if present
  4450.         BX = ???
  4451.         CX = PSP segment of NETBIOS resident code
  4452. SeeAlso: AX=7AFEh
  4453. --------N-2F7AA0-----------------------------
  4454. INT 2F U - Personal NetWare - HRMIB - ???
  4455.     AX = 7AA0h
  4456.     BX = function
  4457.         0000h ???
  4458.         0001h ???
  4459. Return: ???
  4460. SeeAlso: AX=7A2Fh/BX=0EDCh
  4461. --------N-2F7AC1-----------------------------
  4462. INT 2F - LAN HiJack - LHR - DISABLE???
  4463.     AX = 7AC1h
  4464. Program: LAN HiJack is a NetWare utility by KDS Software which allows a user
  4465.       to take over control of a workstation remotely; LHR is the program
  4466.       run on the slave workstation
  4467. SeeAlso: AX=7AC8h,AX=7AC9h,AX=7ACFh
  4468. --------N-2F7AC2-----------------------------
  4469. INT 2F - LAN HiJack - LHR - SYNCHRONIZE SHIFT STATES???
  4470.     AX = 7AC2h
  4471. Note:    sets BIOS keyboard status byte to an internal variable
  4472. SeeAlso: AX=7AC3h,AX=7ACFh
  4473. --------N-2F7AC3-----------------------------
  4474. INT 2F - LAN HiJack - LHR - CLEAR ??? FLAG
  4475.     AX = 7AC3h
  4476. SeeAlso: AX=7AC2h,AX=7ACFh
  4477. --------N-2F7AC8-----------------------------
  4478. INT 2F - LAN HiJack - LHR - ENABLE FUNCTIONS
  4479.     AX = 7AC8h
  4480.     BL = function(s) to enable (see #2083)
  4481. SeeAlso: AX=7AC1h,AX=7AC9h,AX=7ACFh
  4482.  
  4483. Bitfields for LAN HiJack function(s) to enable/disable:
  4484. Bit(s)    Description    (Table 2083)
  4485.  0    ???
  4486.  1    remote keyboard enabled
  4487.  2    support remote's mouse
  4488.  3-7    unused
  4489. --------N-2F7AC9-----------------------------
  4490. INT 2F - LAN HiJack - LHR - DISABLE FUNCTIONS
  4491.     AX = 7AC9h
  4492.     BL = function(s) to disable (see #2083)
  4493. SeeAlso: AX=7AC1h,AX=7AC8h
  4494. --------N-2F7ACA-----------------------------
  4495. INT 2F - LAN HiJack - LHJ - ???
  4496.     AX = 7ACAh
  4497.     BL = ???
  4498. Return: ???
  4499. Program: LAN HiJack is a NetWare utility by KDS Software which allows a user
  4500.       to take over control of a workstation remotely; LHJ is the program
  4501.       run on the controlling workstation
  4502. --------N-2F7ACB-----------------------------
  4503. INT 2F - LAN HiJack - LHJ - ???
  4504.     AX = 7ACBh
  4505.     BX = ???
  4506. Return: ???
  4507. Note:    this function appears to be related to the keyboard
  4508. SeeAlso: AX=7ACCh
  4509. --------N-2F7ACC-----------------------------
  4510. INT 2F - LAN HiJack - LHJ - ???
  4511.     AX = 7ACCh
  4512.     BX = ???
  4513. Return: ???
  4514. Note:    this function appears to be related to the mouse
  4515. SeeAlso: AX=7ACBh
  4516. --------N-2F7ACFBX0000-----------------------
  4517. INT 2F - LAN HiJack - LHR - INSTALLATION CHECK
  4518.     AX = 7ACFh
  4519.     BX = 0000h
  4520. Return: BX = segment of resident code if installed
  4521. Program: LAN HiJack is a NetWare utility by KDS Software which allows a user
  4522.       to take over control of a workstation remotely; LHR is the program
  4523.       run on the slave workstation
  4524. --------N-2F7AF0-----------------------------
  4525. INT 2F - Novell NetWare - DOSNP.EXE v1.30G - INSTALLATION CHECK
  4526.     AX = 7AF0h
  4527. Return: AL = FFh if present
  4528.         ES = 7AF0h
  4529.         CX = PSP segment of resident code
  4530. --------N-2F7AF1-----------------------------
  4531. INT 2F - Novell NetWare - Access Server Driver - INSTALLATION CHECK
  4532.     AX = 7AF1h
  4533.     BL = sequence number (01h first driver, 02h second, 00h no driver)
  4534. Return: AX <> 7AF1h if present
  4535.         BH = total number of drivers
  4536.         ---if BL nonzero on entry---
  4537.         AL = number of ports provided by specified driver
  4538.         ES:DI -> driver entry point
  4539.               (see #2084,#2085,#2086,#2087,#2088,#2089,#2090,#2091)
  4540.         ES:DX -> ID string
  4541. SeeAlso: INT 7A/BX=001Ch
  4542.  
  4543. (Table 2084)
  4544. Call Access Server driver "initialize port" function with:
  4545.     AH = 01h
  4546.     AL = port number (00h-0Fh)
  4547.     ES:BX -> configuration parameter block (see #2097)
  4548.     interrupts disabled
  4549. Return: CF clear if successful
  4550.     CF set on error
  4551. SeeAlso: #2085
  4552.  
  4553. (Table 2085)
  4554. Call Access Server driver "get port status" function with:
  4555.     AH = 02h
  4556.     AL = port number (00h-0Fh)
  4557.     interrupts disabled
  4558. Return: CF clear if successful
  4559.         BL = transmitter status (see #2094)
  4560.         BH = receiver status (see #2095)
  4561.         DL = external status signals (see #2096)
  4562.     CF set on error
  4563.     interrupts disabled
  4564. SeeAlso: #2084,#2086,#2089
  4565.  
  4566. (Table 2086)
  4567. Call Access Server driver "get input from port" function with:
  4568.     AH = 03h
  4569.     AL = port number (00h-0Fh)
  4570.     CX = size of data buffer
  4571.     ES:BX -> buffer for data
  4572.     interrupts disabled
  4573. Return: CF clear if successful
  4574.     CF set on error
  4575.     interrupts disabled
  4576.     CX = number of bytes read
  4577. Note:    the driver will add a NUL to the buffer when a break signal is detected
  4578. SeeAlso: #2086,#2087
  4579.  
  4580. (Table 2087)
  4581. Call driver "send output data to port" function with:
  4582.     AH = 04h
  4583.     AL = port number (00h-0Fh)
  4584.     CX = number of bytes to send
  4585.     ES:BX -> buffer containing data
  4586.     interrupts disabled
  4587. Return: CF clear if successful
  4588.     CF set on error
  4589.     interrupts disabled
  4590.     CX = number of bytes actually written
  4591. SeeAlso: #2086,#2088
  4592.  
  4593. (Table 2088)
  4594. Call driver "get I/O character counts" function with:
  4595.     AH = 05h
  4596.     AL = port number (00h-0Fh)
  4597.     interrupts disabled
  4598. Return: CF clear if successful
  4599.         BX = number of bytes pending transmission
  4600.         CX = number of bytes available for reading
  4601.     CF set on error
  4602.     interrupts disabled
  4603. SeeAlso: #2086,#2087
  4604.  
  4605. (Table 2089)
  4606. Call driver "control XON/XOFF" function with:
  4607.     AH = 06h
  4608.     AL = port number (00h-0Fh)
  4609.     DL = new state
  4610.         (00h software flow control disabled, else enabled)
  4611.     interrupts disabled
  4612. Return: CF clear if successful
  4613.     CF set on error
  4614.     interrupts disabled
  4615. SeeAlso: #2090
  4616.  
  4617. (Table 2090)
  4618. Call driver "get error counts and statistics" function with:
  4619.     AH = 07h
  4620.     AL = port number (00h-0Fh)
  4621.     ES:BX -> buffer for statistics (see #2098)
  4622.     interrupts disabled
  4623. Return: CF clear if successful
  4624.         ES:BX buffer filled
  4625.     CF set on error
  4626.     interrupts disabled
  4627. SeeAlso: #2091,#2092,#2093
  4628.  
  4629. (Table 2091)
  4630. Call driver "general request" function with:
  4631.     AH = 08h
  4632.     AL = port number (00h-0Fh)
  4633.     DX = requested operations
  4634.         bit 0: flush transmit buffers
  4635.         bit 1: flush receive buffers
  4636.         bit 4: define XON/XOFF characters
  4637.     ES:BX -> XON/XOFF characters (see #2099) if DX bit 4 set
  4638.     interrupts disabled
  4639. Return: CF clear if successful
  4640.     CF set on error
  4641.     interrupts disabled
  4642.  
  4643. (Table 2092)
  4644. Call driver "deadman timer management" function with:
  4645.     AH = 09h
  4646.     AL = port number (00h-0Fh)
  4647.     BX = next time interval in seconds (0000h to disable timer)
  4648.     interrupts disabled
  4649. Return: CF clear
  4650.     interrupts disabled
  4651. SeeAlso: #2093
  4652.  
  4653. (Table 2093)
  4654. Call driver "get buffer sizes" function with:
  4655.     AH = 0Ah
  4656.     AL = port number (00h-0Fh)
  4657.     interrupts disabled
  4658. Return: CF clear if successful
  4659.        BX = size of transmit buffer
  4660.        CX = size of receive buffer
  4661.     CF set on error
  4662.     interrupts disabled
  4663. SeeAlso: #2092
  4664.  
  4665. (Table 2094)
  4666. Values for Access Server transmitter status:
  4667.  00h    uninitialized
  4668.  01h    ready, not transmitting
  4669.  02h    transmitting
  4670.  03h    XOFF received
  4671.  04h    transmitting, buffer full
  4672.  05h    XOFF received and buffer full
  4673.  
  4674. (Table 2095)
  4675. Values for Access Server receiver status:
  4676.  00h    uninitialized
  4677.  01h    ready
  4678.  02h    receive buffer full, data may have been lost
  4679.  
  4680. Bitfields for external status signals:
  4681. Bit(s)    Description    (Table 2096)
  4682.  7,6    undefined
  4683.  5    CTS active
  4684.  4    DSR active
  4685.  3    DCD active
  4686.  2,1    undefined
  4687.  0    ring indicator
  4688.  
  4689. Format of Access Server configuration parameter block:
  4690. Offset    Size    Description    (Table 2097)
  4691.  00h    BYTE    receive baud rate index
  4692.         00h 50 bps, 01h 75 bps, 02h 110 bps, 03h 134.5 bps,
  4693.         04h 150 bps, 05h 300 bps, 06h 600 bps, 07h 1200 bps,
  4694.         08h 1800 bps, 09h 2000 bps, 0Ah 2400 bps, 0Bh 3600 bps,
  4695.         0Ch 4800 bps, 0Dh 7200 bps, 0Eh 9600 bps, 0Fh 19200 bps,
  4696.         10h 38400 bps, 11h 57600 bps, 12h 115200 bps
  4697.  01h    BYTE    receive bits per character (0=5 bits..3=8 bits)
  4698.  02h    BYTE    receive stop bits
  4699.  03h    BYTE    receive parity
  4700.         00h none, 01h odd, 02h even, 03h mark, 04h space
  4701.  04h    BYTE    transmit baud rate index (same as receive baud rate)
  4702.  05h    BYTE    transmit bits per character (0=5 bits..3=8 bits)
  4703.  06h    BYTE    transmit stop bits
  4704.  07h    BYTE    transmit parity (same as receive parity)
  4705.  08h    BYTE    DTR state (00h off, 01h on)
  4706.  09h    BYTE    RTS state (00h off, 01h on)
  4707.  0Ah    BYTE    flow control (00h none, 01h XON/XOFF, 02h RTS/CTS, 03h both)
  4708.  0Bh    BYTE    break control (00h off, 01h on)
  4709.  
  4710. Format of Access Server statistics:
  4711. Offset    Size    Description    (Table 2098)
  4712.  00h    BYTE    port number
  4713.  01h    BYTE    external status signals (see #2096)
  4714.  02h    BYTE    transmitter status (see #2094)
  4715.  03h    BYTE    receiver status (see #2095)
  4716.  04h    DWORD    number of characters received
  4717.  08h    DWORD    number of characters transmitted
  4718.  0Ch    WORD    input parity errors
  4719.  0Eh    WORD    input framing errors
  4720.  10h    WORD    lost characters due to hardware overrun
  4721.  12h    WORD    lost characters due to data buffer overrun
  4722. Note:    the counts are not allowed to wrap around; once a count reaches FFFFh
  4723.       or FFFFFFFFh, it is no longer incremented
  4724.  
  4725. Format of Access Server XON/XOFF characters:
  4726. Offset    Size    Description    (Table 2099)
  4727.  00h    BYTE    04h (number of bytes following)
  4728.  01h    BYTE    transmit XON character
  4729.  02h    BYTE    transmit XOFF character
  4730.  03h    BYTE    receive XON character
  4731.  04h    BYTE    receive XOFF character
  4732. --------N-2F7AFE-----------------------------
  4733. INT 2F - Novell NetWare - DOSNP.EXE - INSTALLATION CHECK
  4734.     AX = 7AFEh
  4735. Return: AL = FFh if present
  4736.         ES = (data???) segment of DOSNP
  4737. Program: DOSNP.EXE provides "named pipes" support for DOS workstations running
  4738.        NetWare
  4739. Note:    the NetWare shell calls this function and refuses to load if DOSNP is
  4740.       present
  4741. SeeAlso: AX=7A90h
  4742. --------N-2F7AFFBX0000-----------------------
  4743. INT 2F - Novell NetWare - TBMI v1.1+ - INSTALLATION CHECK / Windows SUPPORT
  4744.     AX = 7AFFh
  4745.     BX = 0000h
  4746.     CX = 4E65h ("Ne")
  4747.     DX = 7457h ("tW")
  4748.     ES:DI -> Windows support procedure (see #2100)
  4749. Return: AL = FFh if installed
  4750.         CX = configured sockets (14h)
  4751.         DS:SI -> data table ???
  4752.         ES:DI -> IPX far call handler
  4753. Notes:    for IPX/SPX this call reportedly returns DS:SI pointing to the table
  4754.       of pointers to service events queue head and tail
  4755.     this function is also supported by IPXODI; v2.12 does not change DS,
  4756.       but does set SI to an internal address
  4757. SeeAlso: AX=7AFFh/BX=0001h
  4758.  
  4759. (Table 2100)
  4760. Values Windows support procedure called with:
  4761.     BP = function
  4762.         0001h Get ECB
  4763.         BX = socket number
  4764.         Return: ES:SI -> ECB or 0000h:0000h if none available
  4765.         0002h Count Listen ECBs
  4766.         AX = BX = socket
  4767.         Return: CX = number of listen ECBs for socket
  4768.                 (must be >= 2 for SPX to work)
  4769.         0003h ???
  4770.         0004h Inform task switcher of ECB locations
  4771.         Note:    registers other than those listed above are equal
  4772.               to the values when IPX was called
  4773. Note:    the support function will not be called if IPX is called with BX
  4774.       bit 15 set
  4775. --------N-2F7AFFBX0001-----------------------
  4776. INT 2F - Novell NetWare - TBMI v1.1+, shell v3.01d - INSTALLATION CHECK???
  4777.     AX = 7AFFh
  4778.     BX = 0001h
  4779.     CX = 4E65h ("Ne")
  4780.     DX = 7457h ("tW")
  4781. Return: AL = FFh if installed
  4782.         CX = ???  (8000h)
  4783.         SI = ??? (or -> ???) (0002h and 0007h seen)
  4784.         ES:DI -> IPX far call handler
  4785.         ES:DX -> 6-byte data area ???
  4786. Note:    this function is also supported by IPXODI, but IPXODI v2.12 does not
  4787.       return ES:DX
  4788. SeeAlso: AX=7AFFh/BX=0000h
  4789. --------d-2F7F00-----------------------------
  4790. INT 2F - Jim Harper's CD-ROM redirector SCSI driver - INSTALLATION CHECK
  4791.     AX = 7F00h
  4792. Return: AL = FFh if installed
  4793. SeeAlso: AX=7F01h,AX=7F02h,AX=7F03h
  4794. --------d-2F7F01-----------------------------
  4795. INT 2F - Jim Harper's CD-ROM redirector SCSI driver - DO COMMAND
  4796.     AX = 7F01h
  4797.     DS:DX -> command record (see #2101)
  4798. Return: AL = status
  4799.         00h successful
  4800.         else error code
  4801. SeeAlso: AX=7F00h,AX=7F02h,INT 11/AH=FFh"SDLP",INT 21/AX=4402h"ASPI"
  4802. SeeAlso: INT 4F/AX=8100h
  4803.  
  4804. Format of CD-ROM redirector command record:
  4805. Offset    Size    Description    (Table 2101)
  4806.  00h    BYTE    ID
  4807.  01h 10 BYTEs    CDB (Command Descriptor Block) for operation
  4808.  0Bh    WORD    segment of buffer
  4809.  0Dh    WORD    offset of buffer
  4810.  0Fh    BYTE    status
  4811.  10h    BYTE    sense
  4812.  12h    WORD    count
  4813. --------d-2F7F02-----------------------------
  4814. INT 2F - Jim Harper's CD-ROM redirector SCSI driver - DO RESET
  4815.     AX = 7F02h
  4816. SeeAlso: AX=7F00h,AX=7F01h
  4817. --------d-2F7F03-----------------------------
  4818. INT 2F - Jim Harper's CD-ROM redirector SCSI driver - UNINSTALL
  4819.     AX = 7F03h
  4820. Return: AL = status
  4821.         00h successful
  4822.         01h unable to uninstall
  4823. SeeAlso: AX=7F00h
  4824. ----------2F7F24-----------------------------
  4825. INT 2F - Multiplex - ???
  4826.     AX = 7F24h
  4827.     ???
  4828. Return: ???
  4829. Note:    called by PC/370, an IBM 370 emulator by Donald S. Higgins
  4830. ----------2F7F26-----------------------------
  4831. INT 2F - Multiplex - ???
  4832.     AX = 7F26h
  4833.     ???
  4834. Return: ???
  4835. Note:    called by PC/370, an IBM 370 emulator by Donald S. Higgins
  4836. --------N-2F8000-----------------------------
  4837. INT 2F - EASY-NET - INSTALLATION CHECK
  4838.     AX = 8000h
  4839. Return: AL = 00h not installed
  4840.          FFh installed
  4841. Program: EASY-NET is a shareware two-machine serial-port network
  4842. --------N-2F8000-----------------------------
  4843. INT 2F - Nanosoft, Inc. TurboNET server - INSTALLATION CHECK
  4844.     AX = 8000h
  4845. Return: AL = FFh if installed
  4846.         BX = CS of resident code
  4847.         CX = ??? (03FCh)
  4848. Program: TurboNET is a NetBIOS-based file redirector and server; a
  4849.       demonstration version may be downloaded from Nanosoft's BBS
  4850. SeeAlso: AX=8100h
  4851. --------t-2F8000-----------------------------
  4852. INT 2F - CS_TSR specification - TSR INSTALLATION CHECK
  4853.     AX = 8000h
  4854.     DS:SI -> 4-byte CS_TSR signature (11h 43h 53h 10h)
  4855. Return: AL = status
  4856.         00h no CS_TSR-compliant TSRs installed
  4857.         01h installed, but signature did not match
  4858.         FFh installed, signature matches
  4859.         ES:DI -> resident process block (see #2102) of last installed
  4860.               TSR (if DS:SI pointed at signature on entry)
  4861. Program: the CS_TSR specification is a standardized TSR interface by Compact
  4862.       Soft group in Kiev, Ukraine
  4863. Desc:    determine whether any CS_TSR-compliant TSRs are installed on the
  4864.       selected multiplex number
  4865. Range:    AH=80h to AH=FFh
  4866. SeeAlso: AX=8001h"CS_TSR",AX=8002h"CS_TSR",AX=8003h"CS_TSR"
  4867.  
  4868. Format of CS_TSR process block:
  4869. Offset    Size    Description    (Table 2102)
  4870.  00h  4 BYTEs    CS_TSR signature 11h 43h 53h 10h
  4871.  04h    BYTE    INT 2F multiplex number
  4872.  05h    WORD    virtual process handle (unique among loaded TSRs)
  4873.  07h  2 BYTEs    version (binary minor version, then major version)
  4874.  09h    WORD    PSP segment of TSR
  4875.  0Bh    DWORD    pointer to ASCIZ program name
  4876.  0Fh  3 BYTEs    program creation date (day, month, year)
  4877.  12h  3 BYTEs    process start time (seconds, minutes, hours)
  4878.  15h  3 BYTEs    process start date (day, month, year)
  4879. --------F-2F8000DX0000-----------------------
  4880. INT 2F - FaxBIOS interface - INSTALLATION CHECK
  4881.     AX = 8000h
  4882.     DX = 0000h
  4883.     DI = 0000h
  4884. Return: AL = FFh if installed
  4885.     DX:DI -> signature "FaxBiosjpc"
  4886. Range:    AH=80h to AH=FFh, selected by scanning multiplex numbers for signature
  4887. SeeAlso: AH=2Ah,AX=80FBh
  4888. --------N-2F8001-----------------------------
  4889. INT 2F - Nanosoft, Inc. TurboNET server - ???
  4890.     AX = 8001h
  4891.     DS:SI -> 16-byte buffer for ???
  4892. Return: AH = status
  4893.         00h successful
  4894.         01h error (TurboNET busy)
  4895. Note:    makes NetBIOS calls
  4896. --------t-2F8001-----------------------------
  4897. INT 2F - CS_TSR specification - GET HANDLE (TSR-SPECIFIC INSTALLATION CHECK)
  4898.     AX = 8001h
  4899.     DS:SI -> ASCIZ signature string for desired TSR (see #2103)
  4900. Return: BX = process handle or 0000h if specified TSR not installed
  4901.     ES:DI -> process block for TSR (see #2102) if BX<>0000h
  4902. Note:    A widely-available copy of ASCII billing itself as "ASCII 2.OO by
  4903.       Nick Zaikin Jr." is in fact a hacked copy of the Compact Soft
  4904.       ASCII v4.23 which is identical except for the changed attribution
  4905.       and version (in fact, some instances of "4.23" were missed); the
  4906.       hacked copy requires the signature string
  4907.       "ASCII 2.OO by Nick Zaikin Jr." instead of the unhacked version's
  4908.       simple signature "ASCII"
  4909. SeeAlso: AX=8000h"CS_TSR",AX=8002h"CS_TSR"
  4910.  
  4911. (Table 2103)
  4912. Values for CS_TSR signature strings:
  4913.  "ASCII"    ASCII, a popup ASCII table with character input
  4914.  "Halculator"    HALC, a 32-bit RPN WYSIWIH calculator with undo and ptr support
  4915.  "AntiTurbo"    AT!, an intelligent system slow-down utility
  4916. --------t-2F8002-----------------------------
  4917. INT 2F - CS_TSR specification - GET PROCESS BLOCK BY PROCESS HANDLE
  4918.     AX = 8002h
  4919.     BX = process handle for TSR (see AX=8001h"CS_TSR")
  4920. Return: ES:DI -> process block for specified TSR (see #2102)
  4921.         unchanged if no match for process handle
  4922. Note:    This function is used to allocate a process handle when the TSR
  4923.       installs itself, by setting ES:DI to point at something other than
  4924.       a CS_TSR process block's signature string and iterating through the
  4925.       possible process handles (0001h to FFFFh) until ES:DI is returned
  4926.       unchanged
  4927. SeeAlso: AX=8000h"CS_TSR",AX=8001h"CS_TSR",AX=8003h"CS_TSR"
  4928. --------t-2F8003-----------------------------
  4929. INT 2F - CS_TSR specification - CUSTOM SUBFUNCTION
  4930.     AX = 8003h
  4931.     BX = process handle for TSR (see AX=8001h"CS_TSR")
  4932.     other registers vary by TSR
  4933. Return: vary by TSR, unchanged if not supported
  4934. Program: the CS_TSR specification is a standardized TSR interface by Compact
  4935.       Soft group in Kiev, Ukraine
  4936. SeeAlso: AX=8000h"CS_TSR",AX=8001h"CS_TSR",AX=8002h"CS_TSR"
  4937. --------F-2F80FB-----------------------------
  4938. INT 2F - FaxBIOS interface - COMMAND SUBMISSION
  4939.     AX = 80FBh
  4940.     BX = function number (see #2104)
  4941.     DX:DI -> command buffer
  4942.           (see #2106,#2109,#2110,#2111,#2112,#2113,#2118,#2124,#2131)
  4943. Return: AL = FFh if submitted OK
  4944.     CX = result code (see #2105)
  4945. Range:    AH=80h to AH=FFh, selected by scanning multiplex numbers for signature
  4946. SeeAlso: AX=8000h"FaxBIOS",AX=CBDDh
  4947.  
  4948. (Table 2104)
  4949. Values for FaxBIOS function number:
  4950.  0001h    SYS_LOGIN
  4951.  0002h    SYS_LOGOUT
  4952.  0003h    SYS_GET_FAXAPP_INFO
  4953.  0004h    STAT_IO_GET
  4954.  0005h    STAT_FAXBIOS_GET
  4955.  0006h    PDIR_OPEN
  4956.  0007h    PDIR_CLOSE (see #2114)
  4957.  0008h    PDIR_READ_PERSON (see #2115)
  4958.  0009h    PDIR_PARTIAL_READ
  4959.  000Ah    PDIR_READ_GROUP
  4960.  000Bh    PDIR_READ_MEMBER_LIST
  4961.  000Ch    PDIR_WRITE_PERSON
  4962.  000Dh    PDIR_WRITE_GROUP
  4963.  000Eh    PDIR_DELETE_PERSON
  4964.  000Fh    PDIR_DELETE_GROUP
  4965.  0010h    PDIR_READ_GROUP_LIST
  4966.  0011h    PDIR_IN_GROUP
  4967.  0012h    PDIR_OUT_GROUP
  4968.  0013h    SCHED_OPEN (see #2116)
  4969.  0014h    SCHED_ADD_DEST (see #2117)
  4970.  0015h    SCHED_ADD_FILE (see #2118)
  4971.  0016h    SCHED_SET_PARAMS (see #2119)
  4972.  0017h    SCHED_CANCEL (see #2116)
  4973.  0018h    SCHED_CLOSE (see #2120)
  4974.  0019h    SLOG_OPEN (see #2121)
  4975.  001Ah    SLOG_CLOSE (see #2121)
  4976.  001Bh    SLOG_SHORT_ENV_STAT
  4977.  001Ch    SLOG_LONG_ENV_STAT
  4978.  001Dh    SLOG_DEST_STAT
  4979.  001Eh    SLOG_FILE_STAT
  4980.  001Fh    SLOG_CANCEL_ENV
  4981.  0020h    RLOG_OPEN (see #2121)
  4982.  0021h    RLOG_CLOSE (see #2121)
  4983.  0022h    RLOG_READ
  4984.  0023h    GRAPH_GET_FILE_TYPE (see #2122)
  4985.  0024h    GRAPH_EXPORT_FILE
  4986.  0025h    GRAPH_GET_LAYOUT_INFO
  4987.  0026h    GRAPH_CREATE_FILE (see #2123)
  4988.  0027h    GRAPH_CLOSE_FILE (see #2124)
  4989.  0028h    GRAPH_CREATE_PAGE (see #2125)
  4990.  0029h    GRAPH_WRITE (see #2126)
  4991.  002Ah    GRAPH_END_PAGE
  4992.  002Bh    GRAPH_OPEN_FILE (see #2127)
  4993.  002Ch    GRAPH_GOTO_PAGE (see #2128)
  4994.  002Dh    GRAPH_READ (see #2129)
  4995.  002Eh    IOCTL_GET
  4996.  002Fh    IOCTL_SET
  4997.  0030h    IOCTL_ANSWER_FAX (see #2130)
  4998.  0031h    IOCTL_DIAL (see #2131)
  4999.  
  5000. (Table 2105)
  5001. Values for FaxBIOS result code:
  5002.  0000h    successful
  5003.  0001h    not prepared or servicing another client (busy)
  5004.  0002h    call failed due to sharing (LOCKED)
  5005.  0003h    logged-in client limit reached (FULL)
  5006.  0004h    transport denied (TRANSPORT_DENIED)
  5007.  0005h    not implemented (NOT_IMPLEMENTED)
  5008.  0006h    aborted while in progress (ABORTED)
  5009.  0007h    permissions denied (PERMISSION_DENIED)
  5010.  0008h    requested data is no longer valid (NO_LONGER_VALID)
  5011.  0080h    unspecified system error occurred
  5012.  0081h    an internal file was not found
  5013.  0082h    an internal file could not be created
  5014.  0083h    an internal file could not be opened
  5015.  0084h    an internal file could not be closed
  5016.  0085h    error occurred writing to an internal file
  5017.  0086h    error occurred reading from an internal file
  5018.  0087h    bad or corrupted file encountered
  5019.  0088h    an access violation occurred
  5020.  0089h    an internal file is empty
  5021.  008Ah    insufficient memory to process request
  5022.  008Bh    FaxBIOS was unable to issue a handle
  5023.  008Ch    an error internal to FaxBIOS occurred
  5024.  008Dh    no room on disk
  5025.  0100h    unspecified error accessing client file
  5026.  0101h    file not found
  5027.  0102h    creation fault
  5028.  0103h    open fault
  5029.  0104h    close fault
  5030.  0105h    write fault
  5031.  0106h    read fault
  5032.  0107h    file corrupted
  5033.  0108h    access violation
  5034.  0109h    empty file
  5035.  0200h    unspecified argument error
  5036.  0201h    bad function
  5037.  0202h    bad option
  5038.  0203h    bad structure size
  5039.  0204h    bad buffer size
  5040.  0205h    bad client ID
  5041.  0300h    unspecified error with token
  5042.  0301h    cover sheet token was invalid
  5043.  0302h    logo token was invalid
  5044.  0303h    signature token was invalid
  5045.  0304h    font token was invalid
  5046.  0305h    phone directory token was invalid
  5047.  0306h    outbound route token was invalid
  5048.  0307h    priority token was invalid
  5049.  0308h    sort token was invalid
  5050.  0309h    billing token was invalid
  5051.  0400h    unspecified handle error
  5052.  0401h    bad Phone Directory handle
  5053.  0402h    bad scheduling handle
  5054.  0403h    bad read send log handle
  5055.  0404h    bad read receive log handle
  5056.  0405h    bad graphics handle
  5057.  0500h    data passed in structure was invalid
  5058.  0501h    name field given is invalid
  5059.  0502h    phone number given is invalid
  5060.  0503h    poll code submitted is invalid
  5061.  0504h    file type constant was invalid
  5062.  0505h    BFT constant not defined or supported
  5063.  0506h    resolution not defined or supported
  5064.  0507h    page length not defined or supported
  5065.  0508h    page width not defined or supported
  5066.  0509h    date & time requested are ridiculous
  5067.  050Ah    Subject text was not an ASCIZ string
  5068.  050Bh    From text was not an ASCIZ string
  5069.  050Ch    requested envelope ID was not found
  5070.  050Dh    requested envelope ID is not valid
  5071.  050Eh    envelope requested was not found
  5072.  050Fh    destination index is out of range
  5073.  0510h    file index is out of range
  5074.  0511h    index into receive log is out of range
  5075.  0512h    file name specified was incomplete or invalid
  5076.  0513h    page selected was out of range
  5077.  0514h    bit width more than byte width
  5078.  0515h    mode for open is not defined
  5079.  0516h    person index is out of range
  5080.  0517h    person ID is out of range
  5081.  0518h    group index out of range or invalid
  5082.  0519h    group ID out of range or invalid
  5083.  051Ah    range of indices to read is invalid
  5084.  051Bh    group name given is invalid
  5085.  051Ch    field_to_use is badly specified
  5086.  051Dh    predicate invalid for field specified
  5087.  0600h    unspecified client procedure error
  5088.  0601h    device of interest is not present
  5089.  0602h    device of interest has been removed
  5090.  0603h    device of interest is not responding
  5091.  0604h    device of interest is disabled
  5092.  0605h    could not dial because device was in use
  5093.  0606h    maximum destination limit exceeded
  5094.  0607h    maximum file limit exceeded
  5095.  0608h    scheduling closed with no destination
  5096.  0609h    scheduling closed with no files or poll
  5097.  060Ah    scheduling closed with no parameters specified
  5098.  060Bh    file type specified does not match file
  5099.  060Ch    file type specified is not supported
  5100.  060Dh    file submitted is not exportable
  5101.  060Eh    file type specified is not imageable
  5102.  060Fh    error converting file
  5103.  0610h    envelope could not be cancelled
  5104.  0611h    Phone Directory is full
  5105.  0612h    record is already in the Phone Directory
  5106.  0613h    selected group in Phone Directory is full
  5107.  0614h    person is already in the group
  5108.  0615h    person is not in the group & cannot be removed
  5109.  0616h    a graphics file to be created already exists
  5110.  0617h    a graphics file to be read is empty
  5111.  0618h    GRAPH_CREATE_PAGE called before GRAPH_END_PAGE
  5112.  0619h    graph read or write attempted without goto or create
  5113.  061Ah    graph page contains no data
  5114.  061Bh    Phone Directory is already open for this client
  5115.  061Ch    schedule log is already open for this client
  5116.  061Dh    receive log is aready open for this client
  5117.  061Eh    Phone Directory function requires write mode
  5118.  0800h    denied exclusive use of the API
  5119.  
  5120. Format of FaxBIOS SYS_LOGIN command buffer:
  5121. Offset    Size    Description    (Table 2106)
  5122.  00h    WORD    structure size
  5123.  02h    WORD    function number
  5124.  04h    WORD    return code
  5125.  06h    WORD    client ID
  5126.  08h    WORD    API Major Version
  5127.  0Ah    WORD    API Minor Version
  5128.  0Ch    DWORD    reserved for manufacturer's use
  5129.  10h 22 BYTEs    manufacturer's ID
  5130.  26h    WORD    highest possible device number
  5131.  28h    WORD    maximum destinations per envelope
  5132.  2Ah    WORD    maximum files per envelope
  5133.  2Ch    WORD    FaxBIOS capabilities (see #2107)
  5134.  2Eh    DWORD    T.30 capabilities (see #2108)
  5135.  32h    WORD    IPC handle
  5136.  34h    DWORD    amount of memory needed to load
  5137.  38h    WORD    scope (00h for public, nonzero for private)
  5138.  3Ah  6 BYTEs    future expansion
  5139.  40h    WORD    structure size
  5140.  
  5141. Bitfields for FaxBIOS capabilities:
  5142. Bit(s)    Description    (Table 2107)
  5143.  0    transmit supported
  5144.  1    receive supported
  5145.  2    IOCTL supported
  5146.  3    IOCTL_DIAL supported
  5147.  4    IOCTL_ANSWER_FAX supported
  5148.  5    manual transmit supported
  5149.  6    optional phone services supported
  5150.  7    canonical phone objects
  5151.  8    seam with next supported
  5152.  
  5153. Bitfields for T.30 capabilities:
  5154. Bit(s)    Description    (Table 2108)
  5155.  0    low vertical resolution (minimum)
  5156.  1    high vertical resolution
  5157.  2    page width 107mm (4.21 in)
  5158.  3    page width 151mm (5.91 in)
  5159.  4    page width 215mm (8.46 in) (minimum)
  5160.  5    page width 255mm (10.04 in)
  5161.  6    page width 303mm (11.93 in)
  5162.  7    unused
  5163.  8    page length 297mm (11.69 in) (minimum)
  5164.  9    page length 364mm (14.33 in)
  5165.  10    page length 279mm (11 in)
  5166.  11    page length unlimited
  5167.  12    Group 4 resolution 300x300
  5168.  13    Group 4 resolution 400x400
  5169.  14    able to respond to poll from remote
  5170.  15    able to poll remote
  5171.  16    binary file transfer supported
  5172.  
  5173. Format of FaxBIOS SYS_LOGOUT command buffer:
  5174. Offset    Size    Description    (Table 2109)
  5175.  00h    WORD    structure size
  5176.  02h    WORD    function number
  5177.  04h    WORD    return code
  5178.  06h    WORD    client ID
  5179.  08h    DWORD    client tag (for client's internal use)
  5180.  0Ch  6 BYTEs    future expansion
  5181.  12h    WORD    structure size
  5182.  
  5183. Format of FaxBIOS SYS_GET_FAXAPP_INFO command buffer:
  5184. Offset    Size    Description    (Table 2110)
  5185.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5186.  0Ch 80 BYTEs    FaxBIOS data
  5187.  5Ch 80 BYTEs    default cover
  5188.  ACh 80 BYTEs    default logo
  5189.  FCh 80 BYTEs    default signature
  5190. 14Ch 80 BYTEs    default font 10
  5191. 19Ch 80 BYTEs    default font 165
  5192. 1ECh 80 BYTEs    default user font
  5193. 23Ch 80 BYTEs    default Pdir
  5194. 28Ch 80 BYTEs    default sort
  5195. 2DCh 10 BYTEs    default bill
  5196. 2E6h 10 BYTEs    default route
  5197. 2F0h 40 BYTEs    default cover sheet form
  5198. 318h 34 BYTEs    valid dial characters
  5199. 33Ah  6 BYTEs    local country code
  5200. 340h  6 BYTEs    local city or area code
  5201. 346h  6 BYTEs    future expansion
  5202. 34Ch    WORD    structure size
  5203.  
  5204. Format of FaxBIOS STAT_IO_GET command buffer:
  5205. Offset    Size    Description    (Table 2111)
  5206.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5207.  0Ch    WORD    device number
  5208.  0Eh    WORD    current activity
  5209.  10h    WORD    number of rings (if ringing)
  5210.  12h    WORD    number of fascimiles transmitted
  5211.  14h    WORD    number of fascimiles received
  5212.  16h    WORD    status of last transmission
  5213.  18h    WORD    envelope number of last transmission
  5214.  1Ah    WORD    index of last destination in envelope
  5215.  1Ch    WORD    status of last reception
  5216.  1Eh    WORD    current page (if session in progress)
  5217.  20h 80 BYTEs    current file
  5218.  70h 104 BYTEs    remote number
  5219.  D8h 20 BYTEs    last name
  5220.  ECh 20 BYTEs    first name
  5221. 100h 32 BYTEs    company name
  5222. 120h 32 BYTEs    notes
  5223. 140h    WORD    current envelope ID (if sending)
  5224. 142h    WORD    total pages in transmission (if sending)
  5225. 144h  6 BYTEs    future expansion
  5226. 14h    WORD    structure size
  5227.  
  5228. Format of FaxBIOS STAT_FAXBIOS_GET command buffer:
  5229. Offset    Size    Description    (Table 2112)
  5230.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5231.  0Ch    WORD    status ID
  5232.  0Eh    WORD    currenty FaxBIOS function number
  5233.  10h    WORD    current Client ID being serviced
  5234.  12h    WORD    number of things to do
  5235.  14h    WORD    number of them done
  5236.  16h    WORD    number of pages to do (if any)
  5237.  18h    WORD    number of them done
  5238.  1Ah    WORD    number of files to do
  5239.  1Ch    WORD    number of them done
  5240.  1Eh 80 BYTEs    current File
  5241.  6Eh    WORD    0 if all devices are idle
  5242.  70h    WORD    number of fascimiles transmitted
  5243.  72h    WORD    number of fascimiles received
  5244.  74h    WORD    status of last transmission in system
  5245.  76h    WORD    envelope ID of last transmission
  5246.  78h    WORD    index of last destination in envelope
  5247.  7Ah    WORD    status of last reception in system
  5248.  7Ch    DWORD    time of next transmission
  5249.  80h  6 BYTEs    future expansion
  5250.  86h    WORD    structure size
  5251.  
  5252. Format of FaxBIOS PDIR_OPEN command buffer:
  5253. Offset    Size    Description    (Table 2113)
  5254.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5255.  0Ch 80 BYTEs    Phone Directory token
  5256.  5Ch 80 BYTEs    sort order token
  5257.  ACh    WORD    open Mode (0 = read, 1 = write)
  5258.  AEh    WORD    Phone Directory handle
  5259.  B0h    WORD    number of people
  5260.  B2h    WORD    number of groups
  5261.  B4h    WORD    bitmap of fields supported by partial read
  5262.  B6h  6 BYTEs    future expansion
  5263.  BCh    WORD    structure size
  5264.  
  5265. Format of FaxBIOS PDIR_CLOSE command buffer:
  5266. Offset    Size    Description    (Table 2114)
  5267.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5268.  0Ch    WORD    Phone Directory handle
  5269.  0Eh  6 BYTEs    future expansion
  5270.  14h    WORD    structure size
  5271.  
  5272. Format of FaxBIOS PDIR_READ_PERSON command buffer:
  5273. Offset    Size    Description    (Table 2115)
  5274.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5275.  0Ch    WORD    Phone Directory handle
  5276.  0Eh    WORD    retrieve by index
  5277.  10h    WORD    person ID or index
  5278.  12h    WORD    how many groups person is in
  5279.  14h    WORD    person ID
  5280.  16h 20 BYTEs    last name
  5281.  2Ah 20 BYTEs    first name
  5282.  3Eh 32 BYTEs    company
  5283.  5Eh 32 BYTEs    notes
  5284.  7Eh  6 BYTEs    FAX country code
  5285.  84h  6 BYTEs    FAX city/area code
  5286.  8Ah 14 BYTEs    FAX local number
  5287.  98h 14 BYTEs    FAX extension
  5288.  A6h 24 BYTEs    reserved
  5289.  BEh  6 BYTEs    voice country code
  5290.  C4h  6 BYTEs    voice city/area code
  5291.  CAh 14 BYTEs    voice local number
  5292.  D8h 14 BYTEs    voice extension
  5293.  E6h 24 BYTEs    reserved
  5294.  FEh 10 BYTEs    outbound routing information
  5295. 108h 10 BYTEs    billing information, credit card etc
  5296. 112h    DWORD    remote FAX capabilities
  5297. 116h 21 BYTEs    T.30 poll code of FAX number
  5298. 12Bh 15 BYTEs    reserved
  5299. 13Ah  6 BYTEs    future expansion
  5300. 140h    WORD    structure size
  5301.  
  5302. Format of FaxBIOS SCHED_OPEN, SCHED_CANCEL command buffer:
  5303. Offset    Size    Description    (Table 2116)
  5304.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5305.  0Ch    WORD    scheduler handle
  5306.  0Eh  6 BYTEs    future expansion
  5307.  14h    WORD    structure size
  5308.  
  5309. Format of FaxBIOS SCHED_ADD_DEST command buffer:
  5310. Offset    Size    Description    (Table 2117)
  5311.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5312.  0Ch    WORD    schedule handle
  5313.  0Eh    WORD    device number if manual send wanted
  5314.  10h    WORD    non-zero if poll desired
  5315.  12h    WORD    person ID
  5316.  14h 20 BYTEs    last name
  5317.  28h 20 BYTEs    first name
  5318.  3Ch 32 BYTEs    company
  5319.  5Ch 32 BYTEs    notes
  5320.  7Ch  6 BYTEs    FAX country code
  5321.  82h  6 BYTEs    FAX city/area code
  5322.  88h 14 BYTEs    FAX local number
  5323.  96h 14 BYTEs    FAX extension
  5324.  A4h 24 BYTEs    reserved
  5325.  BCh  6 BYTEs    voice country code
  5326.  C2h  6 BYTEs    voice city/area code
  5327.  C8h 14 BYTEs    voice local number
  5328.  D6h 14 BYTEs    voice extension
  5329.  E4h 24 BYTEs    reserved
  5330.  FCh 10 BYTEs    outbound routing information
  5331. 106h 10 BYTEs    billing information, credit card etc
  5332. 110h    DWORD    remote FAX capabilities
  5333. 114h 21 BYTEs    T.30 poll code of FAX number
  5334. 129h 15 BYTEs    reserved
  5335. 138h  6 BYTEs    future expansion
  5336. 13Eh    WORD    structure size
  5337. SeeAlso: #2118
  5338.  
  5339. Format of FaxBIOS SCHED_ADD_FILE command buffer:
  5340. Offset    Size    Description    (Table 2118)
  5341.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5342.  0Ch    WORD    schedule handle
  5343.  0Eh    WORD    file type
  5344.         0000h unidentified
  5345.         0001h native file format
  5346.         0002h ASCII
  5347.         0003h FaxBIOS Tiff Class F
  5348.  10h 80 BYTEs    file name
  5349.  60h 80 BYTEs    font token
  5350.  B0h    WORD    conversion options bitmap
  5351.  B2h    WORD    resolution
  5352.         0000h standard 98 lines per inch, 204 dpi
  5353.         0001h fine 196 lines per inch, 204 dpi
  5354.         0002h Group4 300 dpi
  5355.         0003h Group4 400 dpi
  5356.  B4h    WORD    page length
  5357.         0000h 279 mm (11 in)
  5358.         0001h 297 mm (11.69 in)
  5359.         0002h 364 mm (14.33 in)
  5360.         0003h unlimited
  5361.  B6h    WORD    page width
  5362.         0000h 215 mm (8.46 in)
  5363.         0001h 255 mm (10.04 in)
  5364.         0002h 303 mm (11.93 in)
  5365.         0003h 151 mm (5.91 in)
  5366.         0004h 107 mm (4.21 in)
  5367.  B8h    WORD    binary file transfer specification
  5368.         0000h only as FAX
  5369.         0001h only as file (for non-faxable files)
  5370.         0002h as file when possible else FAX
  5371.  BAh    WORD    seam flag (nonzero for seam with next)
  5372.  BCh    WORD    delete flag (nonzero to delete when done)
  5373.  BEh  6 BYTEs    future expansion
  5374.  C4h    WORD    structure size
  5375. SeeAlso: #2117,#2119
  5376.  
  5377. Format of FaxBIOS SCHED_SET_PARAMS command buffer:
  5378. Offset    Size    Description    (Table 2119)
  5379.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5380.  0Ch    WORD    scheduler handle
  5381.  0Eh    DWORD    time to send
  5382.  10h 10 BYTEs    priority token
  5383.  1Ch 80 BYTEs    logo file token
  5384.  6Ch 80 BYTEs    signature file token
  5385.  BCh 80 BYTEs    cover page token
  5386. 10Ch 40 BYTEs    Subject text
  5387. 134h 40 BYTEs    From text
  5388. 15Ch    WORD    user ID
  5389. 15Eh  6 BYTEs    future expansion
  5390. 164h    WORD    structure size
  5391. SeeAlso: #2117,#2118,#2120
  5392.  
  5393. Format of FaxBIOS SCHED_CLOSE command buffer:
  5394. Offset    Size    Description    (Table 2120)
  5395.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5396.  0Ch    WORD    scheduler handle
  5397.  0Eh    WORD    envelope ID generated
  5398.  10h  6 BYTEs    future expansion
  5399.  16h    WORD    structure size
  5400. SeeAlso: #2119
  5401.  
  5402. Format of FaxBIOS SLOG_OPEN, SLOG_CLOSE, RLOG_OPEN, RLOG_CLOSE command buffer:
  5403. Offset    Size    Description    (Table 2121)
  5404.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5405.  0Ch    WORD    log handle
  5406.  0Eh    WORD    number of entries
  5407.  10h  6 BYTEs    future expansion
  5408.  16h    WORD    structure size
  5409.  
  5410. Format of FaxBIOS GRAPH_GET_FILE_TYPE command buffer:
  5411. Offset    Size    Description    (Table 2122)
  5412.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5413.  0Ch 80 BYTEs    filename
  5414.  5Ch    WORD    file type
  5415.         0000h unidentified
  5416.         0001h native file format
  5417.         0002h ASCII
  5418.         0003h FaxBIOS Tiff Class F
  5419.  5Eh    WORD    bitmap of supported capabilities
  5420.  60h  6 BYTEs    future expansion
  5421.  66h    WORD    structure size
  5422. SeeAlso: #2123,#2124
  5423.  
  5424. Format of FaxBIOS GRAPH_CREATE_FILE command buffer:
  5425. Offset    Size    Description    (Table 2123)
  5426.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5427.  0Ch 80 BYTEs    filename
  5428.  5Ch    WORD    graph handle
  5429.  5Eh  6 BYTEs    future expansion
  5430.  64h    WORD    structure size
  5431. SeeAlso: #2122,#2124,#2125
  5432.  
  5433. Format of FaxBIOS GRAPH_CLOSE_FILE, GRAPH_END_PAGE command buffer:
  5434. Offset    Size    Description    (Table 2124)
  5435.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5436.  0Ch    WORD    graph handle
  5437.  0Eh  6 BYTEs    future expansion
  5438.  14h    WORD    structure size
  5439. SeeAlso: #2123,#2125
  5440.  
  5441. Format of FaxBIOS GRAPH_CREATE_PAGE command buffer:
  5442. Offset    Size    Description    (Table 2125)
  5443.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5444.  0Ch    WORD    graph handle
  5445.  0Eh    WORD    resolution
  5446.  10h    WORD    page width
  5447.  12h  6 BYTEs    future expansion
  5448.  18h    WORD    structure size
  5449. SeeAlso: #2123,#2124,#2126
  5450.  
  5451. Format of FaxBIOS GRAPH_WRITE_PAGE command buffer:
  5452. Offset    Size    Description    (Table 2126)
  5453.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5454.  0Ch    WORD    graph handle
  5455.  0Eh    DWORD    pointer to storage for image
  5456.  12h    WORD    band height in lines
  5457.  14h    WORD    width of page image in bytes
  5458.  16h    WORD    facsimile page width constant
  5459.  18h    WORD    width of page image in bits
  5460.  1Ah    WORD    number of bytes actually processed
  5461.  1Ch  6 BYTEs    future expansion
  5462.  22h    WORD    structure size
  5463. SeeAlso: #2125,#2127
  5464.  
  5465. Format of FaxBIOS GRAPH_OPEN_FILE command buffer:
  5466. Offset    Size    Description    (Table 2127)
  5467.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5468.  0Ch 80 BYTEs    filename
  5469.  5Ch    WORD    file type
  5470.  5Eh    WORD    graph handle
  5471.  60h    WORD    number of pages
  5472.  62h  6 BYTEs    future expansion
  5473.  68h    WORD    structure size
  5474. SeeAlso: #2126,#2128
  5475.  
  5476. Format of FaxBIOS GRAPH_GOTO_PAGE command buffer:
  5477. Offset    Size    Description    (Table 2128)
  5478.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5479.  0Ch    WORD    graph handle
  5480.  0Eh    WORD    page number
  5481.  10h    WORD    vertical resolution
  5482.  12h    WORD    page width
  5483.  14h    DWORD    page length
  5484.  18h  6 BYTEs    future expansion
  5485.  1Eh    WORD    structure size
  5486. SeeAlso: #2126,#2127,#2129
  5487.  
  5488. Format of FaxBIOS GRAPH_READ_PAGE command buffer:
  5489. Offset    Size    Description    (Table 2129)
  5490.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5491.  0Ch    WORD    graph handle
  5492.  0Eh    DWORD    pointer to storage for image
  5493.  12h    WORD    band height in lines
  5494.  14h    WORD    width of page image in bytes
  5495.  16h    WORD    facsimile page width constant
  5496.  18h    WORD    width of page image in bits
  5497.  1Ah    WORD    number of bytes actually processed
  5498.  1Ch  6 BYTEs    future expansion
  5499.  22h    WORD    structure size
  5500.  
  5501. Format of FaxBIOS IOCTL_ANSWER_FAX command buffer:
  5502. Offset    Size    Description    (Table 2130)
  5503.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5504.  0Ch    WORD    device number
  5505.  0Eh  6 BYTEs    future expansion
  5506.  14h    WORD    structure size
  5507. SeeAlso: #2131
  5508.  
  5509. Format of FaxBIOS IOCTL_DIAL command buffer:
  5510. Offset    Size    Description    (Table 2131)
  5511.  00h 12 BYTEs    common data (see SYS_LOGOUT above)
  5512.  0Ch    WORD    device number
  5513.  0Eh  6 BYTEs    country code
  5514.  14h  6 BYTEs    city or area code
  5515.  1Ah 14 BYTEs    local number
  5516.  28h 14 BYTEs    extension
  5517.  36h 14 BYTEs    reserved
  5518.  4Eh  6 BYTEs    future expansion
  5519.  54h    WORD    structure size
  5520. SeeAlso: #2130
  5521. --------N-2F8100-----------------------------
  5522. INT 2F U - Nanosoft, Inc. TurboNET redirector - INSTALLATION CHECK
  5523.     AX = 8100h
  5524. Return: AL = FFh if installed
  5525. Program: TurboNET is a NetBIOS-based file redirector and server; a
  5526.       demonstration version may be downloaded from Nanosoft's BBS
  5527. SeeAlso: AX=8000h"TurboNET"
  5528. --------N-2F8101-----------------------------
  5529. INT 2F U - Nanosoft, Inc. TurboNET redirector - ???
  5530.     AX = 8101h
  5531. Return: AL = ???
  5532.     DL = ???
  5533. --------N-2F8102-----------------------------
  5534. INT 2F U - Nanosoft, Inc. TurboNET redirector - ???
  5535.     AX = 8102h
  5536. Return: AL = ???
  5537.     DL = ???
  5538. --------N-2F8103-----------------------------
  5539. INT 2F U - Nanosoft, Inc. TurboNET redirector - GET MACHINE NAME???
  5540.     AX = 8103h
  5541.     ES:DI -> 17-byte buffer
  5542. Return: buffer filled
  5543. --------N-2F8104-----------------------------
  5544. INT 2F U - Nanosoft, Inc. TurboNET redirector - ???
  5545.     AX = 8104h
  5546.     BL = ???
  5547.     BH = ???
  5548.     CX = ???
  5549.     DX = ???
  5550.     DS:SI -> 16-byte buffer containing ???
  5551. Return: AL = 00h ???
  5552. --------N-2F8105-----------------------------
  5553. INT 2F U - Nanosoft, Inc. TurboNET redirector - ???
  5554.     AX = 8105h
  5555.     CX = ??? (don't change current value if 0000h)
  5556.     DX = ??? (don't change current value if 0000h)
  5557. Return: AL = 00h successful
  5558. --------s-2F8200-----------------------------
  5559. INT 2F - RESPLAY - SAMPLE/PLAYBACK
  5560.     AX = 8200h
  5561.     DX:DI -> start of sample space
  5562.     CX:BX = length in bytes
  5563. Return: AX = status (see #2132)
  5564. Program: RESPLAY is a freeware sound sampling/playback utility by Mark J. Cox
  5565. SeeAlso: AX=8201h"RESPLAY",AX=8210h
  5566.  
  5567. (Table 2132)
  5568. Values for RESPLAY status:
  5569.  1000h    successful
  5570.  2000h    not initialized (see AX=8210h)
  5571.  other    RESPLAY not installed
  5572. --------G-2F8200-----------------------------
  5573. INT 2F U - Nanosoft, Inc. CAPDOS - INSTALLATION CHECK
  5574.     AX = 8200h
  5575. Return: AL = FFh if installed
  5576. Program: CAPDOS is a TSR by Nanosoft, Inc. which allows INT 21h calls to be
  5577.       captured and recorded for later analysis
  5578. SeeAlso: AX=8100h,AX=8201h"CAPDOS",AX=8202h"CAPDOS",AX=8203h"CAPDOS"
  5579. SeeAlso: AX=8204h"CAPDOS"
  5580. --------s-2F8201-----------------------------
  5581. INT 2F - RESPLAY - INSTALLATION CHECK
  5582.     AX = 8201h
  5583. Return: AX = 7746h if installed
  5584. SeeAlso: AX=8202h"RESPLAY",AX=8210h
  5585. --------G-2F8201-----------------------------
  5586. INT 2F - Nanosoft, Inc. CAPDOS - CLEAR QUEUE
  5587.     AX = 8201h
  5588. Note:    resets queue of captured INT 21 calls
  5589. SeeAlso: AX=8200h"CAPDOS"
  5590. --------s-2F8202-----------------------------
  5591. INT 2F - RESPLAY - UNINSTALL
  5592.     AX = 8202h
  5593. Return: AX = status
  5594.         1000h successful
  5595. SeeAlso: AX=8201h"RESPLAY",AX=8210h"RESPLAY"
  5596. --------G-2F8202-----------------------------
  5597. INT 2F - Nanosoft, Inc. CAPDOS - START COLLECTION
  5598.     AX = 8202h
  5599. SeeAlso: AX=8200h"CAPDOS",AX=8203h"CAPDOS"
  5600. --------G-2F8203-----------------------------
  5601. INT 2F - Nanosoft, Inc. CAPDOS - STOP COLLECTION
  5602.     AX = 8203h
  5603. SeeAlso: AX=8200h"CAPDOS",AX=8202h"CAPDOS",AX=8204h"CAPDOS"
  5604. --------G-2F8204-----------------------------
  5605. INT 2F - Nanosoft, Inc. CAPDOS - GET QUEUE PARAMETERS
  5606.     AX = 8204h
  5607. Return: AH = flag: queue wrapped if nonzero
  5608.     BX = index of current start of queue
  5609.     CX = size of queue in entries
  5610. SeeAlso: AX=8200h"CAPDOS",AX=8202h"CAPDOS",AX=8205h"CAPDOS"
  5611. --------G-2F8205-----------------------------
  5612. INT 2F - Nanosoft, Inc. CAPDOS - GET QUEUE ITEM
  5613.     AX = 8205h
  5614.     BX = queue item number
  5615. Return: AX,BX,CX,DX,SI,DI,DS,ES as on entry to captured DOS call
  5616. SeeAlso: AX=8200h"CAPDOS",AX=8204h"CAPDOS"
  5617. --------s-2F8210-----------------------------
  5618. INT 2F - RESPLAY - INITIALIZE
  5619.     AX = 8210h
  5620.     BL = sound device number (see #2133)
  5621.     BH = sample rate in multiples of 250 Hz (14h to A0h)
  5622.     CL = direction
  5623.         00h playback
  5624.         01h sample
  5625. Return: AX = status (see #2132)
  5626. SeeAlso: AX=8200h"RESPLAY"
  5627.  
  5628. (Table 2133)
  5629. Values for RESPLAY sound device:
  5630.  00h    printer port LPT1
  5631.  01h    printer port LPT2
  5632.  02h    prototype board at I/O address 0300h
  5633.  03h    printer port (alternative LPT1)
  5634.  04h    internal speaker
  5635. ----------2F86-------------------------------
  5636. INT 2F U - ???
  5637.     AH = 86h
  5638.     AL = function (at least 06h and 07h)
  5639.     ???
  5640. Return: ???
  5641. Note:    called by Codeview for Windows
  5642. SeeAlso: AH=44h
  5643. --------U-2F8900-----------------------------
  5644. INT 2F - WHOA!.COM - INSTALLATION CHECK
  5645.     AX = 8900h
  5646. Return: AL = state
  5647.         00h not installed
  5648.         FFh installed
  5649. Program: WHOA!.COM is a system slow-down utility by Brad D Crandall
  5650. SeeAlso: AX=8901h,AX=8902h
  5651. --------U-2F8901-----------------------------
  5652. INT 2F - WHOA!.COM - UNINSTALL
  5653.     AX = 8901h
  5654. Return: AL = status
  5655.         FDh successful
  5656.         FEh error
  5657. SeeAlso: AX=8900h
  5658. --------U-2F8902-----------------------------
  5659. INT 2F - WHOA!.COM - SET DELAY COUNT
  5660.     AX = 8902h
  5661.     BX = delay count (larger values slow system down more)
  5662. Return: AL = status
  5663.         FDh successful
  5664.         FEh error
  5665. Program: WHOA!.COM is a system slow-down utility by Brad D Crandall
  5666. SeeAlso: AX=8900h
  5667. --------U-2F9000-----------------------------
  5668. INT 2F U - RAID - INSTALLATION CHECK
  5669.     AX = 9000h
  5670. Return: AL = FFh if installed
  5671. Program: RAID (Resident AID) is a TSR utility program by Ross Neilson Wentworth
  5672.       that resides mostly in EMS
  5673. --------U-2F9001-----------------------------
  5674. INT 2F U - RAID - GET ???
  5675.     AX = 9001h
  5676. Return: DX:AX -> ???
  5677. SeeAlso: AX=9000h
  5678. --------U-2F9002-----------------------------
  5679. INT 2F U - RAID - GET RESIDENT SEGMENT
  5680.     AX = 9002h
  5681. Return: AX = segment of resident (conventional memory) portion
  5682. SeeAlso: AX=9000h
  5683. --------U-2F9003-----------------------------
  5684. INT 2F U - RAID - UNINSTALL
  5685.     AX = 9003h
  5686. Return: ???
  5687. SeeAlso: AX=9000h
  5688. --------U-2F9004-----------------------------
  5689. INT 2F U - RAID - GET ???
  5690.     AX = 9004h
  5691. Return: AX = first available paragraph past end of resident portion???
  5692.     CX destroyed
  5693. SeeAlso: AX=9000h
  5694. --------e-2F92-------------------------------
  5695. INT 2F - Network Courier E-Mail - API
  5696.     AH = 92h
  5697.     AL = function
  5698.         00h installation check
  5699.         01h uninstall
  5700.         02h pop down MICRO.EXE notification window
  5701.         03h ???
  5702.         04h ???
  5703.         05h ???
  5704. Return: ???
  5705. Program: The Network Courier is an electronic mail package by Consumers
  5706.       Software of Vancouver, BC which was bought by Microsoft in 1991 and
  5707.       renamed Microsoft Mail v3.0.
  5708. SeeAlso: AX=9400h,AX=9401h,AX=9402h,AH=9Ch
  5709. Index:    installation check;Network Courier E-Mail
  5710. Index:    uninstall;Network Courier E-Mail
  5711. --------R-2F9200-----------------------------
  5712. INT 2F U - PC Tools v8.0 DRIVEMAP - BUG
  5713.     AX = 9200h
  5714. Program: DRIVEMAP is a redirector which allows drives on computers connected
  5715.       over the parallel or serial ports to appear as local drives
  5716. BUG:    jumps to data because jump table entry is 0000h
  5717. Note:    DRIVEMAP returns AX=FFFFh if not a valid function number in AL
  5718. --------R-2F9201-----------------------------
  5719. INT 2F U - PC Tools v8.0 DRIVEMAP - CHECK IF MAPPED DRIVE
  5720.     AX = 9201h
  5721.     DL = drive number (01h = A:, etc.)
  5722. Return: AL = 92h if mapped drive
  5723.     AH may be destroyed (v8.0 DRIVEMAP returns AX=0000h if not mapped)
  5724. SeeAlso: AX=9204h,AX=920Bh
  5725. --------R-2F9202-----------------------------
  5726. INT 2F U - PC Tools v8.0 DRIVEMAP - UNINSTALL
  5727.     AX = 9202h
  5728.     BX = caller's CS
  5729. Return: AX = status
  5730.         0000h failed
  5731.         nonzero successful
  5732. SeeAlso: AX=9204h
  5733. --------R-2F9203-----------------------------
  5734. INT 2F U - PC Tools v8.0 DRIVEMAP - GET VERSION
  5735.     AX = 9203h
  5736. Return: AH = major version
  5737.     AL = minor version
  5738.     CX = segment of resident code
  5739. Note:    the DRIVEMAP included with PC Tools v8.0 is version 1.00
  5740. SeeAlso: AX=9204h,INT 16/AX=FF70h
  5741. --------R-2F9204-----------------------------
  5742. INT 2F U - PC Tools v8.0 DRIVEMAP - INSTALLATION CHECK
  5743.     AX = 9204h
  5744. Return: AX = 9200h if installed
  5745.        BL = ???
  5746.        CX = segment of resident code
  5747. Program: DRIVEMAP is a redirector which allows drives on computers connected
  5748.       over the parallel or serial ports to appear as local drives
  5749. SeeAlso: AX=9201h,AX=9202h,AX=9203h
  5750. --------R-2F9205-----------------------------
  5751. INT 2F U - PC Tools v8.0 DRIVEMAP - SET ???
  5752.     AX = 9205h
  5753.     BX = ??? to set
  5754. Return: CX = new value of ???
  5755. --------R-2F9206-----------------------------
  5756. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  5757.     AX = 9206h
  5758.     ???
  5759. Return: ???
  5760. --------R-2F9207-----------------------------
  5761. INT 2F U - PC Tools v8.0 DRIVEMAP - GET ???
  5762.     AX = 9207h
  5763.     ???
  5764. Return: AX = ???
  5765. --------R-2F9208-----------------------------
  5766. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  5767.     AX = 9208h
  5768.     ???
  5769. Return: ???
  5770. --------R-2F9209-----------------------------
  5771. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  5772.     AX = 9209h
  5773.     ???
  5774. Return: AX = ???
  5775.     BX = ???
  5776.     CX = ???
  5777.     DX = ???
  5778. --------R-2F920A-----------------------------
  5779. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  5780.     AX = 920Ah
  5781.     BX = ???
  5782. Return: AX = ??? or FFFBh on error
  5783. --------R-2F920B-----------------------------
  5784. INT 2F U - PC Tools v8.0 DRIVEMAP - SET DRIVE MAPPING
  5785.     AX = 920Bh
  5786.     BL = drive letter (41h ['A'] = A:, etc)
  5787.     CX = ??? (0000h removes mapping)
  5788. Return: AX = ??? or FFF8h on error
  5789. SeeAlso: AX=9201h,AX=920Dh
  5790. --------R-2F920C-----------------------------
  5791. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  5792.     AX = 920Ch
  5793.     ???
  5794. Return: AX = ??? (0002h)
  5795.     CX = ??? (0000h)
  5796. --------R-2F920D-----------------------------
  5797. INT 2F U - PC Tools v8.0 DRIVEMAP - GET DRIVE TYPE
  5798.     AX = 920Dh
  5799.     BL = drive letter (41h ['A'] = A:, etc)
  5800. Return: AX = type flags
  5801.         bit 0: ???
  5802.         bit 1: available
  5803.         bit 5: local
  5804.     BX = ???
  5805.     CX = segment of resident code (apparently an unintended side effect)
  5806. Program: DRIVEMAP is a redirector which allows drives on computers connected
  5807.       over the parallel or serial ports to appear as local drives
  5808. SeeAlso: AX=9218h,INT 16/AX=FF70h
  5809. --------R-2F920E-----------------------------
  5810. INT 2F U - PC Tools v8.0 DRIVEMAP - SET LPT MAPPING
  5811.     AX = 920Eh
  5812.     BX = port number (0-2)
  5813.     CX = ??? (0000h to unmap)
  5814. Return: ???
  5815. --------R-2F920F-----------------------------
  5816. INT 2F U - PC Tools v8.0 DRIVEMAP - GET ???
  5817.     AX = 920Fh
  5818.     ES:DI -> 3-byte buffer for ???
  5819. Return: CX = 0000h
  5820.     ES:DI buffer filled
  5821. --------R-2F9210-----------------------------
  5822. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  5823.     AX = 9210h
  5824.     ???
  5825. Return: ???
  5826. --------R-2F9211-----------------------------
  5827. INT 2F U - PC Tools v8.0 DRIVEMAP - GET ???
  5828.     AX = 9211h
  5829.     ES:DI -> 8-word buffer for ???
  5830. Return: CX = 0000h
  5831.     ES:DI buffer filled
  5832. --------R-2F9212-----------------------------
  5833. INT 2F U - PC Tools v8.0 DRIVEMAP - CRITICAL SECTION???
  5834.     AX = 9212h
  5835.     BX = phase
  5836.         0000h leave critical section???
  5837.         nonzero enter critical section???
  5838. --------R-2F9213-----------------------------
  5839. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  5840.     AX = 9213h
  5841.     BX = function number (0000h-000Bh)
  5842.     ???
  5843. Return: ???
  5844. --------R-2F9214-----------------------------
  5845. INT 2F U - PC Tools v8.0 DRIVEMAP - GET ???
  5846.     AX = 9214h
  5847.     ES:DI -> 6-word buffer for ???
  5848. Return: CX = 0000h
  5849.     AX = ???
  5850.     ES:DI buffer filled
  5851. --------R-2F9215-----------------------------
  5852. INT 2F U - PC Tools v8.0 DRIVEMAP - GET ???
  5853.     AX = 9215h
  5854.     ES:DI -> 100-word buffer for ???
  5855. Return: CX = 0000h
  5856.     ES:DI buffer filled
  5857. --------R-2F9216-----------------------------
  5858. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  5859.     AX = 9216h
  5860.     ES:DI -> ???
  5861. Return: ???
  5862. --------R-2F9217-----------------------------
  5863. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  5864.     AX = 9217h
  5865.     DS:SI -> 25-word buffer containing ???
  5866. Return: ???
  5867. --------R-2F9218-----------------------------
  5868. INT 2F U - PC Tools v8.0 DRIVEMAP - GET LPT TYPE???
  5869.     AX = 9218h
  5870.     BX = port number???
  5871. Return: AX = ???
  5872.     BX = ??? (0000h)
  5873.     CX = ??? (0000h)
  5874. Program: DRIVEMAP is a redirector which allows drives on computers connected
  5875.       over the parallel or serial ports to appear as local drives
  5876. --------R-2F9219-----------------------------
  5877. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  5878.     AX = 9219h
  5879.     ???
  5880. Return: ???
  5881. --------R-2F921A-----------------------------
  5882. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  5883.     AX = 921Ah
  5884.     ???
  5885. Return: AH = ???
  5886.     AL = ???
  5887.     BX = ???
  5888. --------R-2F921B-----------------------------
  5889. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  5890.     AX = 921Bh
  5891.     ???
  5892. Return: AX = ???
  5893.     CX = segment of resident code (apparently an unintended side effect)
  5894. --------R-2F921C-----------------------------
  5895. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  5896.     AX = 921Ch
  5897.     ???
  5898. Return: ???
  5899. --------R-2F921D-----------------------------
  5900. INT 2F U - PC Tools v8.0 DRIVEMAP - GET ???
  5901.     AX = 921Dh
  5902. Return: AX = ???
  5903. --------R-2F921E-----------------------------
  5904. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  5905.     AX = 921Eh
  5906.     ???
  5907. Return: ???
  5908. Program: DRIVEMAP is a redirector which allows drives on computers connected
  5909.       over the parallel or serial ports to appear as local drives
  5910. Note:    this function sets two variables to 24h each
  5911. SeeAlso: INT 16/AX=FF70h
  5912. --------V-2F93-------------------------------
  5913. INT 2F - InnerMission v1.7+ - INSTALLATION CHECK
  5914.     AH = 93h
  5915.     BX = CX = AX
  5916. Return: AL = state
  5917.         FFh if installed and BX=CX=AX on entry
  5918.         BX = segment of resident code
  5919.         01h if installed but BX or CX differ from AX (multiplex number not
  5920.           available)
  5921. Program: InnerMission is a shareware graphical screen blanker by Kevin Stokes
  5922. SeeAlso: INT 14/AX=AA01h,INT 2F/AX=6400h
  5923. Index:    screen saver;InnerMission
  5924. --------e-2F9400-----------------------------
  5925. INT 2F - MICRO.EXE - INSTALLATION CHECK
  5926.     AX = 9400h
  5927. Return: AL = 07h or 08h if installed
  5928. Program: MICRO.EXE is a TSR of the Microsoft Mail part of Workgroup Connection
  5929. SeeAlso: AH=92h"Network Courier",AX=9401h,AX=9402h,AX=9403h,AX=9404h
  5930. SeeAlso: INT 21/AH=3Fh"WORKGRP.SYS"
  5931. --------e-2F9401-----------------------------
  5932. INT 2F - MICRO.EXE - SET ??? FLAG
  5933.     AX = 9401h
  5934. SeeAlso: AX=9400h,AX=9403h
  5935. --------e-2F9402-----------------------------
  5936. INT 2F - MICRO.EXE - ???
  5937.     AX = 9402h
  5938.     ???
  5939. Return: ???
  5940. SeeAlso: AX=9400h
  5941. --------e-2F9403-----------------------------
  5942. INT 2F - MICRO.EXE - SET ??? FLAG
  5943.     AX = 9403h
  5944. SeeAlso: AX=9400h,AX=9404h
  5945. --------e-2F9404-----------------------------
  5946. INT 2F - MICRO.EXE - CLEAR ??? FLAG
  5947.     AX = 9404h
  5948.     ES:DI -> name of executable from which MICRO.EXE was started
  5949. Note:    if the specified name is identical to the name of the program file
  5950.       from which MICRO was started, the ??? flag is cleared; otherwise,
  5951.       it is left unchanged
  5952. SeeAlso: AX=9400h,AX=9403h
  5953. --------V-2F96C7-----------------------------
  5954. INT 2F U - STRETCH - INSTALLATION CHECK
  5955.     AX = 96C7h
  5956. Return: AX = AAAAh if installed
  5957. Program: stretch.exe is a TSR for Toshiba Laptops to avoid blank screen areas
  5958.       in VGA text modes by increasing inter-line spacing
  5959. --------e-2F9C-------------------------------
  5960. INT 2F - Network Courier E-Mail OPERATOR.EXE - API
  5961.     AH = 9Ch
  5962.     AL = subfunction
  5963.         01h uninstall
  5964. Return: ???
  5965. Program: The Network Courier is an electronic mail package by Consumers
  5966.       Software of Vancouver, BC which was bought by Microsoft in 1991 and
  5967.       renamed Microsoft Mail v3.0.
  5968. SeeAlso: AH=92h
  5969. Index:    uninstall;Network Courier E-Mail OPERATOR.EXE
  5970. --------G-2F9E00-----------------------------
  5971. INT 2F U - INTMON v2.1 - INSTALLATION CHECK
  5972.     AX = 9E00h
  5973. Return: AX = FFFFh if installed
  5974.         BX = segment of resident code
  5975. Program: INTMON is a shareware interactive interrupt monitoring TSR for 386
  5976.       and higher machines by Celso Minnitti, Jr.
  5977. SeeAlso: AX=9E01h,AX=9E02h,AX=9E03h,AX=9F00h
  5978. --------G-2F9E01-----------------------------
  5979. INT 2F U - INTMON v2.1 - RESET
  5980.     AX = 9E01h
  5981. Return: ???
  5982. Desc:    this function specifies that INTMON should assume that any interrupts
  5983.       on which it is currently awaiting a return have completed (i.e.
  5984.       interrupts which never return such as INT 20 and INT 27)
  5985. SeeAlso: AX=9E00h,AX=9E03h
  5986. --------G-2F9E02-----------------------------
  5987. INT 2F U - INTMON v2.1 - DISPLAY CPU REGISTERS???
  5988.     AX = 9E02h
  5989. Return: ???
  5990. SeeAlso: AX=9E00h
  5991. --------G-2F9E03-----------------------------
  5992. INT 2F U - INTMON v2.1 - HOOK INTERRUPT???
  5993.     AX = 9E03h
  5994.     BH = interrupt number???
  5995. Return: ???
  5996. Note:    if AL > 03h on entry, INTMON 2.1 returns immediately
  5997. SeeAlso: AX=9E00h,AX=9E01h
  5998. --------G-2F9F00-----------------------------
  5999. INT 2F U - INTCFG v2.1 - INSTALLATION CHECK
  6000.     AX = 9F00h
  6001. Return: AX = FFFFh if installed
  6002. Program: INTCFG is an optionally-resident control program for INTMON by Celso
  6003.       Minnitti, Jr.
  6004. SeeAlso: AX=9E00h,AX=9F01h,AX=9F30h,AX=9F49h
  6005. --------G-2F9F01-----------------------------
  6006. INT 2F U - INTCFG v2.1 - ???
  6007.     AX = 9F01h
  6008.     ???
  6009. Return: ???
  6010. SeeAlso: AX=9F00h
  6011. --------G-2F9F30-----------------------------
  6012. INT 2F U - INTCFG v2.1 - GET ???
  6013.     AX = 9F30h
  6014. Return: AX = ??? (0002h)
  6015. SeeAlso: AX=9F00h
  6016. --------G-2F9F49-----------------------------
  6017. INT 2F U - INTCFG v2.1 - UNINSTALL
  6018.     AX = 9F49h
  6019. Return: AX,DX,DS,ES destroyed
  6020. SeeAlso: AX=9F00h
  6021. --------E-2FA1--BX0081-----------------------
  6022. INT 2F - Ergo DOS extenders - INSTALLATION CHECK
  6023.     AH = A1h
  6024.     BX = 0081h
  6025.     AL = which
  6026.         FEh OS/286,OS/386
  6027.         FFh HummingBoard DOS extender
  6028.     ES:DI -> 16-byte buffer
  6029. Return: if installed, first four bytes of ES:DI buffer are "IABH"
  6030. Note:    since TKERNEL is a licensed version, it is likely that subfunctions
  6031.       BX=0082h and BX=0084h are present and function identically to the
  6032.       AX=FBA1h/BX=008xh calls
  6033. SeeAlso: AX=ED00h,AX=FBA1h/BX=0081h,INT 15/AX=BF02h
  6034. --------m-2FA189-----------------------------
  6035. INT 2F U - Biologic HRAMDEV.SYS - API
  6036.     AX = A189h
  6037.     BX = subfunction
  6038.         0000h set ???
  6039.         0001h remove ???
  6040.         0002h get status ???
  6041.         0003h enable ???
  6042.         0004h disable ???
  6043.         0005h set ??? flag
  6044.         0006h clear ??? flag
  6045.         0007h set ??? flag
  6046.         0008h clear ??? flag
  6047.         0009h set ???
  6048.     ES:DI -> function-specific arguments
  6049.         if func 0000h: 20-byte buffer containing ???
  6050.         if func 0001h: 20-byte buffer for returned ???
  6051.         if func 0002h: 16-byte buffer for returned ???
  6052.         if func 0009h: WORD containing ???
  6053. Return: BX = A189h if installed
  6054.     AH = status
  6055.         00h successful
  6056.         FFh failed or invalid function number
  6057. Program: HRAMDEV.SYS is a part of the shareware package HRAM by Biologic which
  6058.       provides improved high memory access under MS-DOS 5.0
  6059. Note:    functions 00h and 01h use a stack of four entries; function 01h always
  6060.       removes the values stored with the most recent function 00h call
  6061.       which has not yet been matched with a function 01h call.
  6062. --------U-2FA4E0-----------------------------
  6063. INT 2F - Futurus Team - INSTALLATION CHECK
  6064.     AX = A4E0h
  6065. Return: AL = 52h ("R") if installed
  6066.         AH = major version plus 30h ("0")
  6067.         ES:BX -> ??? (INT A4 handler???)
  6068. Note:    older versions of Right Hand Man (from which Team evolved) store the
  6069.       signature "RH" at offset 103h in the INT 2F handler's segment
  6070. SeeAlso: INT A4"Right Hand Man"
  6071. --------U-2FA900-----------------------------
  6072. INT 2F - METZTSR.COM - INSTALLATION CHECK
  6073.     AX = A900h
  6074.     CF set
  6075. Return: CF clear if resident
  6076.         AX = 97FFh
  6077.     CF set if not present
  6078. Notes:    METZTSR.COM prevents METZ applications (such as the MAGIC screen
  6079.       saver) inactivity timeout while running a DOSapp under MS Windows.
  6080.     the default multiplex number is A9h, but may be set to any value from
  6081.       80h to FFh with a commandline switch
  6082. SeeAlso: AX=A901h,AX=A902h
  6083. --------U-2FA901-----------------------------
  6084. INT 2F - METZTSR.COM - GET TIME OF LAST KEYBOARD ACTIVITY
  6085.     AX = A901h
  6086.     CF set
  6087. Return: CF clear if successful
  6088.         AX:DX = BIOS time at which INT 09 was last invoked
  6089.     CF set if not present
  6090. SeeAlso: INT 09,INT 1A/AH=00h
  6091. --------U-2FA902-----------------------------
  6092. INT 2F - METZTSR.COM - SET METZ Ctrl-Alt-Del FLAG
  6093.     AX = A902h
  6094.     BL = new value
  6095.         00h Ctrl-Alt-Del not allowed
  6096.         else Ctrl-Alt-Del allowed (startup default is 01h)
  6097.     CF set
  6098. Return: CF clear if successful
  6099.         AX = 97FFh
  6100.     CF set if not resident
  6101. SeeAlso: AX=A903h
  6102. --------U-2FA903-----------------------------
  6103. INT 2F - METZTSR.COM - GET METZ Ctrl-Alt-Del FLAG
  6104.     AX = A903h
  6105.     CF set
  6106. Return: CF clear if successful
  6107.         AX = 97FFh if Ctrl-Alt-Del allowed
  6108.         AX = 0000h if Ctrl-Alt-Del not allowed
  6109.     CF set if not resident
  6110. SeeAlso: AX=A902h
  6111. --------U-2FAA00-----------------------------
  6112. INT 2F - VIDCLOCK.COM - INSTALLATION CHECK
  6113.     AX = AA00h
  6114. Return: AL = 00h not installed
  6115.          FFh installed
  6116. Program: VIDCLOCK.COM is a memory-resident clock by Thomas G. Hanlin III
  6117. --------f-2FAB00-----------------------------
  6118. INT 2F - Btrieve Multi-User - INSTALLATION CHECK
  6119.     AX = AB00h
  6120. Return: AL = 4Dh if installed
  6121. SeeAlso: AX=AB01h,AX=AB02h,INT 7B"Btrieve"
  6122. ----------2FAB00-----------------------------
  6123. INT 2F - SRSoft MODAL PC v2+ - INSTALLATION CHECK / GET VERSION
  6124.     AX = AB00h
  6125. Return: AX = 5253h ('SR' byte-swapped) if installed
  6126.         BX = MODAL PC version (BL = major, BH = minor)
  6127. Program: MODAL PC is an algorithm/real-system simulation package by SR Soft
  6128.       using Petri-nets to describe simulated objects
  6129. SeeAlso: AX=AB01h"MODAL",AX=AB02h"MODAL",AX=AB06h"MODAL"
  6130. --------f-2FAB01-----------------------------
  6131. INT 2F - Btrieve Multi-User - EXECUTE Btrieve OPERATION
  6132.     AX = AB01h
  6133.     BX = process ID
  6134.     DS:DX -> 38-byte parameter record (see #2967 at INT 7B"Btrieve")
  6135. Return: AL = status
  6136.         00h OK
  6137.         other retry after calling INT 7F/AX=0200h
  6138. SeeAlso: AX=AB00h"Btrieve",AX=AB02h"Btrieve",INT 7B"Btrieve",INT 7F/AX=0200h
  6139. ----------2FAB01-----------------------------
  6140. INT 2F - SRSoft MODAL PC v2+ - GET PROCESS RUN PARAMETER
  6141.     AX = AB01h
  6142. Return: AX = 5253h ('SR' byte-swapped) if installed
  6143.     BL = run parameter
  6144.         00h normal process
  6145.         01h run with tracing enabled
  6146.         02h run initialization process (first thread of main task)
  6147. SeeAlso: AX=AB00h"MODAL",AX=AB02h"MODAL"
  6148. --------f-2FAB02-----------------------------
  6149. INT 2F - Btrieve Multi-User - GET NEW PROCESS ID
  6150.     AX = AB02h
  6151. Return: AL = 00h successful
  6152.         BX = process ID
  6153.     AL > 00h failed, retry after calling INT 7F/AX=0200h
  6154. SeeAlso: AX=AB00h,AX=AB01h,INT 7B"Btrieve",INT 7F/AX=0200h
  6155. ----------2FAB02-----------------------------
  6156. INT 2F - SRSoft MODAL PC v2+ - SET PROCESS EXIT CODE
  6157.     AX = AB02h
  6158.     BL = exit code
  6159. Return: AX = 5253h ('SR' byte-swapped) if installed
  6160. SeeAlso: AX=AB00h"MODAL",AX=AB01h"MODAL",AX=AB03h"MODAL"
  6161. ----------2FAB03-----------------------------
  6162. INT 2F - SRSoft MODAL PC v2+ - ALLOCATE COMMON MEMORY
  6163.     AX = AB03h
  6164.     BX = required size of common memory for variables/semaphores in bytes
  6165. Return: AX = 5253h ('SR' byte-swapped) if installed
  6166. SeeAlso: AX=AB00h"MODAL",AX=AB02h"MODAL",AX=AB04h"MODAL"
  6167. ----------2FAB04-----------------------------
  6168. INT 2F - SRSoft MODAL PC v2+ - GET ALL COMMON VARIABLES AND SEMAPHORES
  6169.     AX = AB04h
  6170.     DS:DX -> buffer for common data
  6171. Return: AX = 5253h ('SR' byte-swapped) if installed
  6172.     CF clear if successful
  6173.     CF set on error
  6174. SeeAlso: AX=AB00h"MODAL",AX=AB03h"MODAL",AX=AB05h"MODAL",AX=AB06h,AX=AB07h
  6175. ----------2FAB05-----------------------------
  6176. INT 2F - SRSoft MODAL PC v2+ - SET ALL COMMON VARIABLES AND SEMAPHORES
  6177.     AX = AB05h
  6178.     DS:DX -> buffer containing common data
  6179. Return: AX = 5253h ('SR' byte-swapped) if installed
  6180.     CF clear if successful
  6181.     CF set on error
  6182. SeeAlso: AX=AB00h"MODAL",AX=AB03h"MODAL",AX=AB04h"MODAL",AX=AB06h,AX=AB07h
  6183. ----------2FAB06-----------------------------
  6184. INT 2F - SRSoft MODAL PC v2+ - GET A COMMON VARIABLE OR SEMAPHORE
  6185.     AX = AB06h
  6186.     BX = offset of variable or semaphore in common memory
  6187.     CX = variable/semaphore size in bytes
  6188.     DS:DX -> buffer for variable or semaphore
  6189. Return: AX = 5253h ('SR' byte-swapped) if installed
  6190.     CF clear if successful
  6191.     CF set on error
  6192. SeeAlso: AX=AB00h"MODAL",AX=AB04h,AX=AB05h,AX=AB07h
  6193. ----------2FAB07-----------------------------
  6194. INT 2F - SRSoft MODAL PC v2+ - SET A COMMON VARIABLE OR SEMAPHORE
  6195.     AX = AB07h
  6196.     BX = offset of variable or semaphore in common memory
  6197.     CX = variable/semaphore size in bytes
  6198.     DS:DX -> buffer containing variable or semaphore
  6199. Return: AX = 5253h ('SR' byte-swapped) if installed
  6200.     CF clear if successful
  6201.     CF set on error
  6202. SeeAlso: AX=AB00h"MODAL",AX=AB04h,AX=AB05h,AX=AB06h
  6203. --------V-2FAC00-----------------------------
  6204. INT 2F - DOS 4.01+ GRAPHICS.COM - INSTALLATION CHECK
  6205.     AX = AC00h
  6206. Return: AX = FFFFh
  6207.     ES:DI -> ??? (graphics data?) (not documented)
  6208. Note:    this installation check was moved here to avoid the conflict with the
  6209.       CD-ROM extensions that occurred in DOS 4.00
  6210. SeeAlso: AX=1500h"GRAPHICS"
  6211. --------V-2FAC00DI1092-----------------------
  6212. INT 2F - QRIP/TSR - GIVE CPU TO QRIP
  6213.     AX = AC00h
  6214.     DI = 1092h
  6215. Return: nothing
  6216. Program: QRIP/TSR is a shareware TSR by Shane Hathaway implementing the Remote
  6217.       Imaging Protocol (RIP, RIPscrip) used by several BBS systems to
  6218.       provide a graphical user interface
  6219. Desc:    give QRIP some CPU time to update music and flashing timers
  6220. Notes:    if DI <> 1092h on entry, QRIP chains the call
  6221.     this function should be called regularly whenever the terminal program
  6222.       is otherwise idle; the updates are automatically performed on any
  6223.       other QRIP call
  6224. SeeAlso: AX=AC01h,AX=ACF0h
  6225. --------V-2FAC01DI1092-----------------------
  6226. INT 2F - QRIP/TSR - CHANGE INTERNAL FLAGS
  6227.     AX = AC01h
  6228.     DI = 1092h
  6229.     BX = flags to be turned on (see #2134)
  6230.     CX = flags to be turned off (see #2134)
  6231. Return: AX = 9142h if installed
  6232.         DX = DOS-takeover flag (nonzero if QRIP able to take over DOS)
  6233.         ---if DX nonzero---
  6234.         BX = QRIP version number in hex (BH = major, BL = minor)
  6235.         CX = new flags (see #2134)
  6236. Note:    if DI <> 1092h on entry, QRIP chains the call
  6237. SeeAlso: AX=AC00h/DI=1092h,AX=ACF0h
  6238.  
  6239. Bitfields for QRIP internal flags:
  6240. Bit(s)    Description    (Table 2134)
  6241.  0    ANSI emulation enabled (default on)
  6242.  1    RIP emulation enabled (default on)
  6243.  2    graphical commands allowed (default on)
  6244.  3    TTY text allowed (default on)
  6245.  4    disable @ variables (default off in TSR mode)
  6246.  5    wait for key on RIP "end scene" command (default off)
  6247.  6    anti-stripping (default off in TSR mode)
  6248.  7    sound enabled (default on)
  6249.  8    automatic message filter (default off in TSR mode)
  6250.  9    display-only mode (no user prompts)
  6251.  10    TTY text suppression (default off in TSR mode)
  6252.  11-15    reserved
  6253. --------V-2FAC02DI1092-----------------------
  6254. INT 2F - QRIP/TSR - TURN OFF GRAPHICS SCREEN
  6255.     AX = AC02h
  6256.     DI = 1092h
  6257. Return: nothing
  6258. Note:    if DI <> 1092h on entry, QRIP chains the call
  6259. SeeAlso: AX=AC03h,AX=ACF0h
  6260. --------V-2FAC03DI1092-----------------------
  6261. INT 2F - QRIP/TSR - TURN ON GRAPHICS SCREEN
  6262.     AX = AC03h
  6263.     DI = 1092h
  6264. Return: nothing
  6265. Notes:    if DI <> 1092h on entry, QRIP chains the call
  6266.     this function does not restore the contents of the screen (see AX=AC15h)
  6267. SeeAlso: AX=AC02h,AX=AC14h,AX=AC15h
  6268. --------V-2FAC04DI1092-----------------------
  6269. INT 2F - QRIP/TSR - OUTPUT STRING THROUGH QRIP
  6270.     AX = AC04h
  6271.     DI = 1092h
  6272.     DX:BX -> string
  6273.     CX = length of string
  6274. Return: nothing
  6275. Note:    if DI <> 1092h on entry, QRIP chains the call
  6276. SeeAlso: AX=AC05h,AX=AC09h,AX=AC0Ah,AX=ACF0h
  6277. --------V-2FAC05DI1092-----------------------
  6278. INT 2F - QRIP/TSR - OUTPUT NULL-TERMINATED STRING THROUGH QRIP
  6279.     AX = AC05h
  6280.     DI = 1092h
  6281.     DX:BX -> ASCIZ string
  6282. Return: nothing
  6283. Note:    if DI <> 1092h on entry, QRIP chains the call
  6284. SeeAlso: AX=AC04h,AX=AC06h,AX=AC09h,AX=AC0Ah,AX=ACF0h
  6285. --------V-2FAC06DI1092-----------------------
  6286. INT 2F - QRIP/TSR - RECEIVE CHARACTERS FROM QRIP
  6287.     AX = AC06h
  6288.     DI = 1092h
  6289. Return: AX = character to send to BBS (0001h-00FFh) or special code (see #2135)
  6290.     BX = string-waiting flag
  6291.         0001h entire string waiting to be sent to terminal (call AX=AC0Ch)
  6292.     CX = DX = AX
  6293. Note:    if DI <> 1092h on entry, QRIP chains the call
  6294. SeeAlso: AX=AC04h,AX=AC05h,AX=AC0Ch,AX=AC16h,AX=AC18h,AX=AC1Ah
  6295.  
  6296. (Table 2135)
  6297. Values for QRIP special codes:
  6298.  0000h    if none
  6299.  0100h    wait for user keypress (must call AX=AC16h/BL=00h or AX=AC18h)
  6300.  0101h    both/middle mouse button pressed
  6301.  0102h    entering block mode (up/download) (call AX=AC1Ah)
  6302.  0103h    right mouse button pressed
  6303.  0104h    BBS requested status bar on
  6304.  0105h    BBS requested status bar off
  6305.  0106h    BBS requested VT-102 terminal emulation
  6306.     (keypad keys should send VT-102 escape codes)
  6307.  0107h    BBS requested VT-102 mode off
  6308.  0108h    BBS requested doorway mode (raw IBM keyboard ASCII/scan code pairs)
  6309.  0109h    BBS requested doorway mode off
  6310.  010Ah    hotkey mode on
  6311.  010Bh    hotkey mode off
  6312.  010Ch    BBS requested Tab-key button changing on
  6313.  010Dh    BBS requested Tab-key mode off
  6314.  010Eh    XOFF (use flow control to stop incoming characters)
  6315.  010Fh    XON (use flow control to resume incoming characters)
  6316.  0110h-0119h BBS requested application (0-9) be run
  6317.     application 0 should be a standard text editor
  6318.  01FFh    send ASCII 00h to BBS
  6319. Note:    for special codes 0104h to 010Dh, the terminal program should report
  6320.       any mode changes it make in response by calling AX=AC16h
  6321. --------V-2FAC07DI1092-----------------------
  6322. INT 2F - QRIP/TSR - GET FONT DIRECTORY
  6323.     AX = AC07h
  6324.     DI = 1092h
  6325. Return: DX:BX -> 80-byte internal buffer containing ASCIZ font directory name
  6326. Notes:    if DI <> 1092h on entry, QRIP chains the call
  6327.     the application may change the font directory by overwriting the
  6328.       returned buffer, ensuring that it does not exceed 80 bytes incl. NUL
  6329.     if changed, the new path will not become effective until the graphics
  6330.       screen is reinitialized
  6331. SeeAlso: AX=AC08h,AX=ACF0h
  6332. --------V-2FAC08DI1092-----------------------
  6333. INT 2F - QRIP/TSR - GET ICON DIRECTORY
  6334.     AX = AC08h
  6335.     DI = 1092h
  6336. Return: DX:BX -> 80-byte internal buffer containing ASCIZ icon directory name
  6337. Notes:    if DI <> 1092h on entry, QRIP chains the call
  6338.     the application may change the icon directory by overwriting the
  6339.       returned buffer, ensuring that it does not exceed 80 bytes incl. NUL,
  6340.       and includes a trailing backslash
  6341.     if changed, the new path becomes effective immediately
  6342. SeeAlso: AX=AC07h,AX=ACF0h
  6343. --------V-2FAC09DI1092-----------------------
  6344. INT 2F - QRIP/TSR - OUTPUT STRING THROUGH QRIP
  6345.     AX = AC09h
  6346.     DI = 1092h
  6347.     DX:BX -> string
  6348.     CX = length of string
  6349. Return: AX = character to send to BBS (0001h-00FFh) or special code (see #2135)
  6350.     BX = string-waiting flag
  6351.         0001h entire string waiting to be sent to terminal (call AX=AC0Ch)
  6352.     CX = DX = AX
  6353. Note:    if DI <> 1092h on entry, QRIP chains the call
  6354. SeeAlso: AX=AC04h,AX=AC06h,AX=AC0Ah,AX=ACF0h
  6355. --------V-2FAC0ADI1092-----------------------
  6356. INT 2F - QRIP/TSR - OUTPUT NULL-TERMINATED STRING THROUGH QRIP
  6357.     AX = AC0Ah
  6358.     DI = 1092h
  6359.     DX:BX -> ASCIZ string
  6360. Return: AX = character to send to BBS (0001h-00FFh) or special code (see #2135)
  6361.     BX = string-waiting flag
  6362.         0001h entire string waiting to be sent to terminal (call AX=AC0Ch)
  6363.     CX = DX = AX
  6364. Note:    if DI <> 1092h on entry, QRIP chains the call
  6365. SeeAlso: AX=AC05h,AX=AC06h,AX=AC09h,AX=ACF0h
  6366. --------V-2FAC0BDI1092-----------------------
  6367. INT 2F - QRIP/TSR - EXECUTE RIP "END SCENE" COMMAND
  6368.     AX = AC0Bh
  6369.     DI = 1092h
  6370. Return: nothing
  6371. Notes:    if DI <> 1092h on entry, QRIP chains the call
  6372.     enables all mouse buttons and cancels the RIP timeout
  6373. SeeAlso: AX=AC01h,AX=AC04h,AX=ACF0h
  6374. --------V-2FAC0CDI1092-----------------------
  6375. INT 2F - QRIP/TSR - GET STRING TO BE SENT TO BBS
  6376.     AX = AC0Ch
  6377.     DI = 1092h
  6378. Return: AX = status
  6379.         0000h nothing to be sent
  6380.         0001h a string is waiting to be sent
  6381.         DX:BX -> string to be sent (may contain NULs)
  6382.         CX = length of string
  6383.         0002h special code waiting (call AX=AC06h)
  6384. Note:    if DI <> 1092h on entry, QRIP chains the call
  6385. SeeAlso: AX=AC06h,AX=ACF0h
  6386. --------V-2FAC0DDI1092-----------------------
  6387. INT 2F - QRIP/TSR - SET PROTECTED SCREEN AREA
  6388.     AX = AC0Dh
  6389.     DI = 1092h
  6390.     CL = number of text lines at bottom of screen to protect (00h = off)
  6391.     BL = attribute with which to fill area (bit 7 = high-int. background)
  6392. Return: nothing
  6393. Note:    if DI <> 1092h on entry, QRIP chains the call
  6394. SeeAlso: AX=AC0Eh,AX=AC0Fh,AX=AC10h,AX=ACF0h
  6395. --------V-2FAC0EDI1092-----------------------
  6396. INT 2F - QRIP/TSR - WRITE ASCIZ STRING IN PROTECTED AREA
  6397.     AX = AC0Eh
  6398.     DI = 1092h
  6399.     DX:BX -> ASCIZ string to be written
  6400.     CL = column at which to begin writing
  6401.     CH = row number within protected area (00h = first line)
  6402. Return: nothing
  6403. Note:    if DI <> 1092h on entry, QRIP chains the call
  6404. SeeAlso: AX=AC0Dh,AX=AC0Fh,AX=AC10h,AX=ACF0h
  6405. --------V-2FAC0FDI1092-----------------------
  6406. INT 2F - QRIP/TSR - SCROLL PROTECTED AREA
  6407.     AX = AC0Fh
  6408.     DI = 1092h
  6409.     BH,BL = row,column of upper-left corner in protected area
  6410.     DH,DL = row,column of lower-right corner
  6411.     CL = number of lines to scroll up
  6412. Return: nothing
  6413. Note:    if DI <> 1092h on entry, QRIP chains the call
  6414. SeeAlso: AX=AC0Dh,AX=AC0Eh,AX=AC10h,AX=ACF0h
  6415. --------V-2FAC10DI1092-----------------------
  6416. INT 2F - QRIP/TSR - SET OUTPUT COLOR FOR PROTECTED AREA
  6417.     AX = AC10h
  6418.     DI = 1092h
  6419.     BL = new attribute (bit 7 set for high-intensity background)
  6420. Return: nothing
  6421. Note:    if DI <> 1092h on entry, QRIP chains the call
  6422. SeeAlso: AX=AC0Dh,AX=AC0Eh,AX=AC0Fh,AX=AC11h,AX=ACF0h
  6423. --------V-2FAC11DI1092-----------------------
  6424. INT 2F - QRIP/TSR - CONVERT PROTECTED AREA TO ENTIRE SCREEN
  6425.     AX = AC11h
  6426.     DI = 1092h
  6427.     BX = mode (0000h = normal protect, 0001h = allow full-screen access)
  6428. Note:    if DI <> 1092h on entry, QRIP chains the call
  6429. SeeAlso: AX=AC0Dh,AX=AC0Eh,AX=AC0Fh,AX=AC10h,AX=AC12h,AX=ACF0h
  6430. --------V-2FAC12DI1092-----------------------
  6431. INT 2F - QRIP/TSR - BEGIN POPUP-WINDOW MODE
  6432.     AX = AC12h
  6433.     DI = 1092h
  6434. Return: nothing
  6435. Notes:    if DI <> 1092h on entry, QRIP chains the call
  6436.     while popup-mode is in effect, the terminal program can write to the
  6437.       screen (and easily restore it) by outputting a RIP file with AX=AC04h
  6438.       or AX=AC05h
  6439.     QRIP will automatically drop out of popup-window mode if the terminal
  6440.       program invokes RIP pick-lists
  6441.     any changes to the protected area will be restored when popup-window
  6442.       mode is cancelled
  6443. SeeAlso: AX=AC04h,AX=AC11h,AX=AC13h,AX=ACF0h
  6444. --------V-2FAC13DI1092-----------------------
  6445. INT 2F - QRIP/TSR - END POPUP-WINDOW MODE
  6446.     AX = AC13h
  6447.     DI = 1092h
  6448. Return: nothing
  6449. Notes:    if DI <> 1092h on entry, QRIP chains the call
  6450.     restores screen
  6451. SeeAlso: AX=AC12h,AX=ACF0h
  6452. --------V-2FAC14DI1092-----------------------
  6453. INT 2F - QRIP/TSR - SAVE GRAPHICS SCREEN AND SWITCH TO TEXT MODE
  6454.     AX = AC14h
  6455.     DI = 1092h
  6456. Return: nothing
  6457. Note:    if DI <> 1092h on entry, QRIP chains the call
  6458. SeeAlso: AX=AC03h,AX=AC15h
  6459. --------V-2FAC15DI1092-----------------------
  6460. INT 2F - QRIP/TSR - RESTORE GRAPHICS SCREEN
  6461.     AX = AC15h
  6462.     DI = 1092h
  6463. Return: nothing
  6464. Desc:    restores the graphics screen saved by the last call to AX=AC14h
  6465. Note:    if DI <> 1092h on entry, QRIP chains the call
  6466. SeeAlso: AX=AC03h,AX=AC14h
  6467. --------V-2FAC16DI1092-----------------------
  6468. INT 2F - QRIP/TSR - REPORT MODE CHANGE TO QRIP
  6469.     AX = AC16h
  6470.     DI = 1092h
  6471.     BL = new mode
  6472.         00h terminate key wait
  6473.         01h status bar on
  6474.         02h status bar off
  6475.         03h VT-102 mode on
  6476.         04h VT-102 mode off
  6477.         05h doorway mode on
  6478.         06h doorway mode off
  6479.         07h hotkeys mode on
  6480.         08h hotkeys mode off
  6481.         09h tabkey mode on
  6482.         0Ah tabkey mode off
  6483. Return: nothing
  6484. Notes:    if DI <> 1092h on entry, QRIP chains the call
  6485.     all modes default to OFF when QRIP is first installed
  6486. --------V-2FAC17DI1092-----------------------
  6487. INT 2F - QRIP/TSR - CALL (EXECUTE) A RIP FILE
  6488.     AX = AC17h
  6489.     DI = 1092h
  6490.     DX:BX -> ASCIZ filename for RIP file to be executed
  6491. Return: nothing
  6492. Notes:    if DI <> 1092h on entry, QRIP chains the call
  6493.     the specified file may be in the current icon directory, the QRIP
  6494.       startup directory, or the current directory; any pathnames specified
  6495.       with the filename are ignored
  6496. --------V-2FAC18DI1092-----------------------
  6497. INT 2F - QRIP/TSR - SEND USER KEY TO QRIP
  6498.     AX = AC18h
  6499.     DI = 1092h
  6500.     BX = key (00xxh is normal ASCII, xx00h is an extended key)
  6501. Return: nothing
  6502. Note:    if DI <> 1092h on entry, QRIP chains the call
  6503. SeeAlso: AX=AC06h,AX=ACF0h
  6504. --------V-2FAC19DI1092-----------------------
  6505. INT 2F - QRIP/TSR - HANGUP
  6506.     AX = AC19h
  6507.     DI = 1092h
  6508. Return: nothing
  6509. Desc:    inform QRIP that carrier has been lost
  6510. Note:    if DI <> 1092h on entry, QRIP chains the call
  6511. SeeAlso: AX=ACF0h
  6512. --------V-2FAC1ADI1092-----------------------
  6513. INT 2F - QRIP/TSR - GET RIP_ENTER_BLOCK_MODE INFORMATION
  6514.     AX = AC1Ah
  6515.     DI = 1092h
  6516. Return: AH = requested protocol (see #2136)
  6517.     AL = file type (see #2137)
  6518.     DX:BX -> ASCIZ filename or 0000h:0000h
  6519.     CX = length of filename
  6520. Note:    if DI <> 1092h on entry, QRIP chains the call
  6521. SeeAlso: AX=ACF0h
  6522.  
  6523. (Table 2136)
  6524. Values for QRIP protocol identifier:
  6525.  00h    Xmodem (checksum)
  6526.  01h    Xmodem-CRC
  6527.  02h    Xmodem-1K
  6528.  03h    Xmodem-1K-G
  6529.  04h    Kermit
  6530.  05h    Ymodem
  6531.  06h    Ymodem-G
  6532.  07h    Zmodem with crash recovery
  6533.  08h-0Fh same as 00h-07h, but for uploading instead of downloading
  6534. SeeAlso: #2137
  6535.  
  6536. (Table 2137)
  6537. Values for QRIP file type:
  6538.  00h    RIP file sequence to be displayed
  6539.  01h    RIP file sequence to be stored in icon directory
  6540.  02h    ICN file sequence to be stored in icon directory
  6541.  03h    HLP file sequence to be stored, then auto-loaded if needed
  6542.  04h    COMPOSITE DYNAMIC file sequence (batch protocols only)
  6543.  05h    ACTIVE DYNAMIC file sequence (batch protocols only)
  6544. Note:    for file types 04h and 05h, any .RIP or .ICN files are stored in
  6545.       the icon directory; in mode 05h, any .RIP files are also played
  6546.       back as they are received
  6547. SeeAlso: #2136
  6548. --------V-2FAC1BDI1092-----------------------
  6549. INT 2F - QRIP/TSR - SET SYSTEM FONT SIZE
  6550.     AX = AC1Bh
  6551.     DI = 1092h
  6552.     BX = font size (see #2138)
  6553. Return: nothing
  6554. Note:    if DI <> 1092h on entry, QRIP chains the call
  6555. SeeAlso: AX=AC04h,AX=ACF0h
  6556.  
  6557. (Table 2138)
  6558. Values for QRIP font size specifier:
  6559.  00h    8x8 font, 80x43 screen
  6560.  01h    7x8 font, 90x43 screen
  6561.  02h    8x14 font, 80x25 screen
  6562.  03h    7x14 font, 90x25 screen
  6563.  04h    16x14 font, 40x25 screen
  6564. --------V-2FACF0DI1092-----------------------
  6565. INT 2F - QRIP/TSR - INSTALLATION CHECK
  6566.     AX = ACF0h
  6567.     DI = 1092h
  6568. Return: AX = 9142h if installed
  6569.         DX = DOS-takeover flag (nonzero if QRIP able to take over DOS)
  6570.         ---if DX nonzero---
  6571.         BX = QRIP version number in hex (BH = major, BL = minor)
  6572.         CX = current flags (see AX=AC01h)
  6573. Note:    if DI <> 1092h on entry, QRIP chains the call
  6574. SeeAlso: AX=AC00h/DI=1092h,AX=AC01h,AX=AC04h,AX=AC06h,AX=AC1Ah,AX=ACFFh
  6575. --------V-2FACFFDI1092-----------------------
  6576. INT 2F - QRIP/TSR - UNINSTALL
  6577.     AX = ACFFh
  6578.     DI = 1092h
  6579. Return: AX = status
  6580.         0000h unable to remove (interrupt vector hooked by another prog)
  6581.         0001h successful
  6582.         0002h unable to take over DOS at this time (retry uninstall)
  6583. Note:    if DI <> 1092h on entry, QRIP chains the call
  6584. SeeAlso: AX=ACF0h
  6585. --------V-2FAD00-----------------------------
  6586. INT 2F U - DOS 3.3+ DISPLAY.SYS internal - INSTALLATION CHECK
  6587.     AX = AD00h
  6588. Return: AL = FFh if installed
  6589.         BX = ??? (0100h for MS-DOS 3.3+)
  6590. Note:    DOS 5+ DISPLAY.SYS chains to previous handler if AL is not one of the
  6591.       subfunctions listed here
  6592. SeeAlso: AX=AD01h"DISPLAY",AX=AD02h"DISPLAY"
  6593. --------O-2FAD00-----------------------------
  6594. INT 2F U - DR DOS 3.41-5.0, Novell DOS 7 KEYB - INSTALLATION CHECK
  6595.     AX = AD00h
  6596. Return: AX = FFFFh if installed
  6597.     flags destroyed
  6598. SeeAlso: AX=AD80h"Novell"
  6599. --------V-2FAD01-----------------------------
  6600. INT 2F U - DOS 3.3+ DISPLAY.SYS internal - SET ACTIVE CODE PAGE
  6601.     AX = AD01h
  6602.     BX = new code page (see #1040 at INT 21/AX=6602h)
  6603. Return: CF clear if successful
  6604.         AX = 0001h
  6605.     CF set on error (unsupported code page)
  6606.         AX = 0000h
  6607. SeeAlso: AX=AD02h"DISPLAY"
  6608. --------O-2FAD01-----------------------------
  6609. INT 2F U - DR DOS 3.41,5.0 KEYB - GET CONFIGURATION
  6610.     AX = AD01h
  6611. Return: BX = current code page (see #1040 at INT 21/AX=6602h)
  6612.     CX = current keyboard layout (0100h = US, 0102h = foreign)
  6613.     ES = resident code segment
  6614. SeeAlso: AX=AD00h"KEYB",AX=AD02h"KEYB",AX=AD83h"KEYB"
  6615. --------V-2FAD02-----------------------------
  6616. INT 2F U - DOS 3.3+ DISPLAY.SYS internal - GET ACTIVE CODE PAGE
  6617.     AX = AD02h
  6618. Return: CF set if code page never set
  6619.         AX = 0001h
  6620.         BX = FFFFh (assume first hardware code page)
  6621.     CF clear if successful
  6622.         BX = current code page (see #1040 at INT 21/AX=6602h)
  6623. SeeAlso: AX=AD01h"DISPLAY",AX=AD03h
  6624. --------O-2FAD02-----------------------------
  6625. INT 2F U - Novell DOS 7 KEYB - ???
  6626.     AX = AD02h
  6627.     DX = ??? (0000h)
  6628. Return: AX = FFFFh if installed
  6629.     flags destroyed
  6630. SeeAlso: AX=AD01h"KEYB"
  6631. --------V-2FAD03-----------------------------
  6632. INT 2F U - DOS 3.3+ DISPLAY.SYS internal - GET CODE PAGE INFORMATION
  6633.     AX = AD03h
  6634.     ES:DI -> buffer for code page information (see #2139)
  6635.     CX = size of buffer in bytes
  6636. Return: CF set if buffer too small
  6637.     CF clear if successful
  6638.         ES:DI buffer filled
  6639. SeeAlso: AX=AD01h,AX=AD02h
  6640.  
  6641. Format of DOS 5.0-6.0 DISPLAY.SYS code page information:
  6642. Offset    Size    Description    (Table 2139)
  6643.  00h    WORD    number of software code pages
  6644.  02h    WORD    ??? (0003h)
  6645.  04h    WORD    number of hardware code pages
  6646.  06h  N WORDs    hardware code page numbers (see #1040 at INT 21/AX=6602h)
  6647.       N WORDs    software (prepared) code pages (FFFFh if not yet prepared)
  6648. --------V-2FAD04-----------------------------
  6649. INT 2F U - DOS 4.x only DISPLAY.SYS internal - ???
  6650.     AX = AD04h
  6651.     ???
  6652. Return: ???
  6653. --------V-2FAD10-----------------------------
  6654. INT 2F U - DOS 4.x DISPLAY.SYS internal - INSTALLATION CHECK???
  6655.     AX = AD10h
  6656.     ???
  6657. Return: AX = FFFFh
  6658.     BX = ??? (0100h in PC-DOS 4.01)
  6659. --------V-2FAD10-----------------------------
  6660. INT 2F U - DOS 5+ DISPLAY.SYS internal - ???
  6661.     AX = AD10h
  6662.     ???
  6663. Return: CF clear if successful
  6664.     CF set on error
  6665. Note:    this function is a NOP if the active code page has never been set
  6666.       (AX=AD02h returns BX=FFFFh); its purpose otherwise is not known
  6667. --------V-2FAD40-----------------------------
  6668. INT 2F - DOS 4.0+ - ???
  6669.     AX = AD40h
  6670.     DX = ???
  6671.     ???
  6672. Return: ???
  6673. Note:    called by PC-DOS 4.01 PRINT.COM
  6674. --------K-2FAD80-----------------------------
  6675. INT 2F u - MS-DOS 3.3+ KEYB.COM internal - INSTALLATION CHECK
  6676.     AX = AD80h
  6677. Return: AL = FFh if installed
  6678.         BX = version number (BH = major, BL = minor)
  6679.         ES:DI -> internal data (see #2140)
  6680. Notes:    MS-DOS 3.30, PC-DOS 4.01, and MS-DOS 5.00 all report version 1.00.
  6681.     this function was undocumented prior to the release of DOS 5.0
  6682. SeeAlso: AX=AD80h"Novell",AX=AD81h,AX=AD82h,AX=AD83h
  6683.  
  6684. Format of KEYB internal data:
  6685. Offset    Size    Description    (Table 2140)
  6686.  00h    DWORD    original INT 09
  6687.  04h    DWORD    original INT 2F
  6688.  08h  6 BYTEs    ???
  6689.  0Eh    WORD    flags (see #2141)
  6690.  10h    BYTE    ???
  6691.  11h    BYTE    ???
  6692.  12h  4 BYTEs    ???
  6693.  16h  2 BYTEs    country ID letters
  6694.  18h    WORD    current code page (see #1040 at INT 21/AX=6602h)
  6695. ---DOS 3.3---
  6696.  1Ah    WORD    pointer to first item in list of code page tables???
  6697.  1Ch    WORD    pointer to ??? item in list of code page tables
  6698.  1Eh  2 BYTEs    ???
  6699.  20h    WORD    pointer to key translation data (see #2143)
  6700.  22h    WORD    pointer to last item in code page table list (see #2142)
  6701.  24h  9 BYTEs    ???
  6702. ---DOS 4.01---
  6703.  1Ah  2 BYTEs    ???
  6704.  1Ch    WORD    pointer to first item in list of code page tables???
  6705.  1Eh    WORD    pointer to ??? item in list of code page tables
  6706.  20h  2 BYTEs    ???
  6707.  22h    WORD    pointer to key translation data (see #2143)
  6708.  24h    WORD    pointer to last item in code page table list (see #2142)
  6709.  26h  9 BYTEs    ???
  6710. Note:    at least in MS-DOS v6.22, the signature "SHARED DATA" immediately
  6711.       precedes this structure
  6712.  
  6713. Bitfields for MS-DOS v6.22 KEYB flags:
  6714. Bit(s)    Description    (Table 2141)
  6715.  15    INT 16/AH=1xh supported (INT 16h/AH=92h call returns AH<=80h)
  6716.  14    INT 16/AH=2xh supported (INT 16h/AH=A2h call returns AH<=80h)
  6717.  13    unused (0)
  6718.  12    network installed (INT 2F/AX=B800h)
  6719.  11    original IBM PC (BIOS date 1981)
  6720.  10    PC or PC/XT (BIOS machine type byte of FBh or FEh)
  6721.  9    PC Convertible (BIOS machine type byte of F9h); use INT 15/AX=4104h
  6722.  8    unused (0)
  6723.  7    IBM PS/2 model 30 (BIOS machine type byte of FAh)
  6724.  6    IBM AT (BIOS machine type FCh)
  6725.  5    IBM PS/2 (BIOS machine type F8h)
  6726.  4    PS/2 and unknown only:
  6727.     non-standard 8042 or no AT->PC scancode translation???
  6728.  3    temporary flag???
  6729.  2-0    ???
  6730. SeeAlso: #2140
  6731.  
  6732. Format of code page table list entries:
  6733. Offset    Size    Description    (Table 2142)
  6734.  00h    WORD    pointer to next item, FFFFh = last
  6735.  02h    WORD    code page (see #1040 at INT 21/AX=6602h)
  6736.  04h  2 BYTEs    ???
  6737.  
  6738. Format of KEYB translation data:
  6739. Offset    Size    Description    (Table 2143)
  6740.  00h    WORD    size of data in bytes, including this word
  6741.  02h N-2 BYTEs    ???
  6742. --------K-2FAD80-----------------------------
  6743. INT 2F u - Novell DOS 7 KEYB.COM - INSTALLATION CHECK
  6744.     AX = AD80h
  6745. Return: AX = FFFFh if installed
  6746.         CX = Novell DOS KEYB version number (CL = major, CH = minor)
  6747.         DX = current keyboard codepage
  6748.         ES:DI -> internal data and tables (ES=FFFEh if KEYB in HMA)
  6749.     flags destroyed
  6750. Note:    versions: v2.08 (original ship 4/94), v2.09 (Update 10, 11/18/94),
  6751.       v2.10 (Update 12, 2/22/95), v2.11 (Update 13, 5/8/95),
  6752.       v2.12 (Update 14, 7/31/95)
  6753. SeeAlso: AX=AD80h"MS-DOS"
  6754. --------K-2FAD81-----------------------------
  6755. INT 2F - DOS 3.3+ KEYB.COM - SET KEYBOARD CODE PAGE
  6756.     AX = AD81h
  6757.     BX = code page (see #1040 at INT 21/AX=6601h)
  6758. Return: CF set on error
  6759.         AX = 0001h (code page not available)
  6760.     CF clear if successful
  6761. Notes:    called by DISPLAY.SYS
  6762.     this function was undocumented prior to the release of DOS 5.0
  6763. SeeAlso: AX=AD80h,AX=AD82h
  6764. --------K-2FAD82-----------------------------
  6765. INT 2F - DOS 3.3+ KEYB.COM - SET KEYBOARD MAPPING
  6766.     AX = AD82h
  6767.     BL = new state
  6768.         00h US keyboard (Control-Alt-F1)
  6769.         FFh foreign keyboard (Control-Alt-F2)
  6770. Return: CF set on error (BL not 00h or FFh)
  6771.     CF clear if successful
  6772. Note:    this function was undocumented prior to the release of DOS 5.0
  6773. SeeAlso: AX=AD80h,AX=AD81h,AX=AD83h
  6774. --------K-2FAD83-----------------------------
  6775. INT 2F - DOS 5+ KEYB.COM - GET KEYBOARD MAPPING
  6776.     AX = AD83h
  6777. Return: BL = current state
  6778.         00h US keyboard
  6779.         FFh foreign keyboard
  6780. SeeAlso: AX=AD82h
  6781. --------l-2FAE00-----------------------------
  6782. INT 2F U - DOS 3.3+ internal - INSTALLABLE COMMAND - INSTALLATION CHECK
  6783.     AX = AE00h
  6784.     DX = magic value FFFFh
  6785.     CH = FFh
  6786.     CL = length of command line tail (4DOS v4.0)
  6787.     DS:BX -> command line buffer (see #2144)
  6788.     DS:SI -> command name buffer (see #2145)
  6789.     DI = 0000h (4DOS v4.0)
  6790. Return: AL = FFh if this command is a TSR extension to COMMAND.COM
  6791.     AL = 00h if the command should be executed as usual
  6792. Notes:    This call provides a mechanism for TSRs to install permanent
  6793.       extensions to the command repertoire of COMMAND.COM.    It appears
  6794.       that COMMAND.COM makes this call before executing the current
  6795.       command line, and does not execute it itself if the return is FFh.
  6796.     APPEND hooks this call, to allow subsequent APPEND commands to
  6797.       execute without re-running APPEND
  6798. SeeAlso: AX=AE01h
  6799.  
  6800. Format of COMMAND.COM command line buffer:
  6801. Offset    Size    Description    (Table 2144)
  6802.  00h    BYTE    max length of command line, as in INT 21/AH=0Ah
  6803.  01h    BYTE    count of bytes to follow, excluding terminating 0Dh
  6804.       N BYTEs    command line text, terminated by 0Dh
  6805.  
  6806. Format of command name buffer:
  6807. Offset    Size    Description    (Table 2145)
  6808.  00h    BYTE    length of command name
  6809.  01h  N BYTEs    uppercased command name (blank-padded to 11 chars by 4DOS v4)
  6810. --------l-2FAE01-----------------------------
  6811. INT 2F U - DOS 3.3+ internal - INSTALLABLE COMMAND - EXECUTE
  6812.     AX = AE01h
  6813.     DX = magic value FFFFh
  6814.     CH = 00h
  6815.     CL = length of command name (4DOS v4.0)
  6816.     DS:BX -> command line buffer (see #2144)
  6817.     DS:SI -> command name buffer (see #2145)
  6818. Return: DS:SI buffer updated
  6819.       if length byte is nonzero, the following bytes contain the uppercase
  6820.       internal command to execute and the command line buffer contains the
  6821.       command's parameters (the first DS:[SI] bytes are ignored)
  6822. Notes:    this call requests execution of the command which a previous call to
  6823.       AX=AE00h indicated was resident
  6824.     APPEND hooks this call
  6825. BUG:    Novell DOS 7.0's COMMAND.COM (prior to Update 12) will attempt to run
  6826.       a disk program with the indicated name even if the returned length
  6827.       byte is zero, because the register used to flag this case is
  6828.       clobbered without first checking it.    The workaround is to set the
  6829.       command name buffer to "REM" followed by enough blanks to pad out
  6830.       the original command's length, which will also work with MS-DOS 6.
  6831.       (from padgett@tccslr.dnet.mmc.com)
  6832. SeeAlso: AX=AE00h
  6833. --------O-2FAF00-----------------------------
  6834. INT 2F - WinDOS v2.11 - INSTALLATION CHECK
  6835.     AX = AF00h
  6836. Return: AL = FFh if installed
  6837. Program: WinDOS is a DOS clone (claimed to be mostly MS-DOS 5.0 API compatible)
  6838.       written by Heiko Goemann
  6839. SeeAlso: AX=AF01h"WinDOS",INT 21/AH=30h
  6840. ----------2FAF00-----------------------------
  6841. INT 2F U - ???
  6842.     AX = AF00h
  6843.     ???
  6844. Return: AX = 0000h if interface supported
  6845. SeeAlso: AX=AF02h,AX=AF03h,AX=AF04h,AX=AF13h,AX=AF30h
  6846. --------O-2FAF01-----------------------------
  6847. INT 2F - WinDOS v2.11 - TURN ON ONLINE MODE
  6848.     AX = AF01h
  6849. Return: nothing
  6850. Desc:    indicate that the user will not exchange floppy disks, allowing WinDOS
  6851.       to cache disk sectors in memory and avoid writing modified sectors
  6852.       back out to the floppy disk
  6853. SeeAlso: AX=AF00h"WinDOS",AX=AF02h"WinDOS"
  6854. --------O-2FAF02-----------------------------
  6855. INT 2F - WinDOS v2.11 - TURN OFF ONLINE MODE
  6856.     AX = AF02h
  6857. Return: nothing
  6858. Desc:    indicate that the floppy disk may be removed, and that WinDOS should
  6859.       write all buffered sectors out to the floppy disk
  6860. SeeAlso: AX=AF00h"WinDOS",AX=AF01h"WinDOS"
  6861. ----------2FAF02-----------------------------
  6862. INT 2F U - ???
  6863.     AX = AF02h
  6864.     ???
  6865. Return: ES = ???
  6866. SeeAlso: AX=AF00h
  6867. --------O-2FAF03-----------------------------
  6868. INT 2F - WinDOS v2.11 - TURN VIDMEM ON
  6869.     AX = AF03h
  6870. Return: AX = status
  6871.         0000h successful
  6872.         0001h CPU not in mode set by DOS386=On
  6873.         0002h video adapter in graphics mode
  6874.         0003h memory chain corrupted
  6875. SeeAlso: AX=AF00h"WinDOS",AX=AF04h"WinDOS",AX=AF05h"WinDOS"
  6876. ----------2FAF03-----------------------------
  6877. INT 2F U - ???
  6878.     AX = AF03h
  6879.     ???
  6880. Return: DX = ???
  6881. SeeAlso: AX=AF00h
  6882. --------O-2FAF04-----------------------------
  6883. INT 2F - WinDOS v2.11 - TURN VIDMEM OFF
  6884.     AX = AF04h
  6885. Return: AX = status
  6886.         0000h successful
  6887.         0001h video memory is in use
  6888. SeeAlso: AX=AF00h"WinDOS",AX=AF03h"WinDOS",AX=AF05h"WinDOS"
  6889. ----------2FAF04-----------------------------
  6890. INT 2F U - ???
  6891.     AX = AF04h
  6892.     ???
  6893. Return: ???
  6894. SeeAlso: AX=AF00h
  6895. --------O-2FAF05-----------------------------
  6896. INT 2F - WinDOS v2.11 - GET VIDMEM STATE
  6897.     AX = AF05h
  6898. Return: AX = status (0000h off, 0001h on)
  6899. SeeAlso: AX=AF00h"WinDOS",AX=AF03h"WinDOS",AX=AF04h"WinDOS"
  6900. ----------2FAF05-----------------------------
  6901. INT 2F U - ???
  6902.     AX = AF05h
  6903.     ???
  6904. Return: ???
  6905. SeeAlso: AX=AF00h
  6906. --------O-2FAF06-----------------------------
  6907. INT 2F - WinDOS v2.11 - MAKE PROGRAM UNBREAKABLE
  6908.     AX = AF06h
  6909.     DS:DX -> break handler
  6910.     DI:BX = stack to use for break handler
  6911. Return: nothing
  6912. Desc:    set a handler which should be invoked when Ctrl-C is pressed instead of
  6913.       aborting the program
  6914. SeeAlso: AX=AF00h"WinDOS",AX=AF0Ah"WinDOS",AX=AF0Ch"WinDOS"
  6915. --------O-2FAF07-----------------------------
  6916. INT 2F - WinDOS v2.11 - SIGNAL FATAL OVERLAY FAULT
  6917.     AX = AF07h
  6918. Return: never -- system reset
  6919. Desc:    pop up a window indicating that the system overlay file can not be
  6920.       loaded
  6921. SeeAlso: AX=AF00h"WinDOS",AX=AF08h"WinDOS"
  6922. --------O-2FAF08-----------------------------
  6923. INT 2F - WinDOS v2.11 - SIGNAL RECOVERABLE OVERLAY FAULT
  6924.     AX = AF08h
  6925. Return: nothing
  6926. Desc:    pop up a window requesting that a disk containing SH.OVL be inserted
  6927. SeeAlso: AX=AF00h"WinDOS",AX=AF07h"WinDOS",AX=AF0Bh
  6928. --------O-2FAF09-----------------------------
  6929. INT 2F - WinDOS v2.11 - GET TERMINATED PSP
  6930.     AX = AF09h
  6931. Return: DS = PSP segment of most recently ended TSR
  6932. SeeAlso: AX=AF00h"WinDOS",AX=AF0Ah
  6933. --------O-2FAF0A-----------------------------
  6934. INT 2F - WinDOS v2.11 - GET MAIN SHELL PSP
  6935.     AX = AF0Ah
  6936. Return: AX = shell's PSP (same as DS on last call to AX=AF06h)
  6937. Desc:    get the PSP address of the last program to call AX=AF06h (normally
  6938.       the main command interpreter)
  6939. SeeAlso: AX=AF00h"WinDOS",AX=AF06h"WinDOS",AX=AF09h
  6940. --------O-2FAF0B-----------------------------
  6941. INT 2F - WinDOS v2.11 - SIGNAL FATAL ERROR
  6942.     AX = AF0Bh
  6943. Return: never -- system reset
  6944. Desc:    pop up a window indicating a terminal system error
  6945. SeeAlso: AX=AF00h"WinDOS",AX=AF07h,AX=AF08h,AX=AF15h"WinDOS"
  6946. --------O-2FAF0C-----------------------------
  6947. INT 2F - WinDOS v2.11 - GET OTHER MAIN SHELL PARAMETERS
  6948.     AX = AF0Ch
  6949. Return: DI:AX = stack
  6950.     SI = offset of break handler
  6951. Desc:    retrieve the parameters last set by AX=AF06h (normally by the main
  6952.       command interpreter)
  6953. SeeAlso: AX=AF00h"WinDOS",AX=AF06h"WinDOS"
  6954. --------O-2FAF0D-----------------------------
  6955. INT 2F - WinDOS v2.11 - GET CURRENT PARAMETER
  6956.     AX = AF0Dh
  6957.     BX = offset of desired parameter in global data area
  6958. Return: AX = current value of parameter (AH undefined if byte value)
  6959. SeeAlso: AX=AF00h"WinDOS",AX=AF0Eh
  6960. --------O-2FAF0E-----------------------------
  6961. INT 2F - WinDOS v2.11 - SET CURRENT PARAMETER BYTE VALUE
  6962.     AX = AF0Eh
  6963.     BX = offset of desired parameter in global data area
  6964.     DL = new value of parameter
  6965. Return: nothing
  6966. SeeAlso: AX=AF00h"WinDOS",AX=AF0Dh
  6967. --------O-2FAF0F-----------------------------
  6968. INT 2F - WinDOS v2.11 - GET HISTORY SEGMENT
  6969.     AX = AF0Fh
  6970. Return: AX = segment of buffer for input history, or 0000h if none 
  6971. SeeAlso: AX=AF00h"WinDOS",AX=AF10h"WinDOS"
  6972. --------O-2FAF10-----------------------------
  6973. INT 2F - WinDOS v2.11 - SET HISTORY SEGMENT
  6974.     AX = AF10h
  6975.     BX = segment of new buffer for input history
  6976. Return: nothing
  6977. Note:    the buffer must have been allocated with INT 21/AH=48h
  6978. SeeAlso: AX=AF00h"WinDOS",AX=AF0Fh"WinDOS"
  6979. --------O-2FAF11-----------------------------
  6980. INT 2F - WinDOS v2.11 - FREE XMS BLOCKS
  6981.     AX = AF11h
  6982. Return: nothing
  6983. Desc:    free all XMS blocks whose XMS identification value (see AX=AF12h)
  6984.       equals the current PSP
  6985. SeeAlso: AX=AF00h"WinDOS",AX=AF12h"WinDOS",INT 21/AH=50h
  6986. --------O-2FAF12-----------------------------
  6987. INT 2F - WinDOS v2.11 - SET XMS IDENTIFICATION VALUE
  6988.     AX = AF12h
  6989.     DS = new XMS identification value (normally caller's PSP segment)
  6990. Return: nothing
  6991. SeeAlso: AX=AF00h"WinDOS",AX=AF11h"WinDOS"
  6992. ----------2FAF12-----------------------------
  6993. INT 2F U - ???
  6994.     AX = AF12h
  6995.     ???
  6996. Return: ES = ???
  6997. SeeAlso: AX=AF00h
  6998. --------O-2FAF13-----------------------------
  6999. INT 2F - WinDOS v2.11 - SET ASSIGN VALUE
  7000.     AX = AF13h
  7001.     BL = number of drive to remap (00h = A:)
  7002.     DL = number of drive to be accessed via drive number BL
  7003. Return: nothing
  7004. Desc:    remap a drive letter
  7005. Note:    the remapping can be canceled by specifying DL=BL
  7006. SeeAlso: AX=AF00h"WinDOS",AX=AF14h"WinDOS",AX=0601h
  7007. ----------2FAF13-----------------------------
  7008. INT 2F U - ???
  7009.     AX = AF13h
  7010.     ???
  7011. Return: ???
  7012. SeeAlso: AX=AF00h
  7013. --------O-2FAF14-----------------------------
  7014. INT 2F - WinDOS v2.11 - GET ASSIGN VALUE
  7015.     AX = AF14h
  7016.     BL = drive number (00h = A:)
  7017. Return: DL = drive number which is actually accessed by drive number BL
  7018. Desc:    determine the current mapping for a drive
  7019. SeeAlso: AX=AF00h"WinDOS",AX=AF13h"WinDOS",AX=0601h
  7020. --------O-2FAF15-----------------------------
  7021. INT 2F - WinDOS v2.11 - SIGNAL STACK ERROR
  7022.     AX = AF15h
  7023. Return: never -- system reset
  7024. Desc:    pop up a window indicating a stack overflow
  7025. SeeAlso: AX=AF00h"WinDOS",AX=AF0Bh"WinDOS"
  7026. --------O-2FAF16-----------------------------
  7027. INT 2F - WinDOS v2.11 - GET SIMPLE TRUENAME
  7028.     AX = AF16h
  7029.     DS:SI -> path to be canonicalized
  7030.     ES:DI -> buffer for canonicalized filename/pathname
  7031. Return: CF clear if successful
  7032.         AX = 0000h
  7033.     CF set on error
  7034.         AX = DOS error code (see #0960 at INT 21/AH=59h)
  7035. Desc:    partially canonicalize a path, omitting SUBST, JOIN, ASSIGN, and
  7036.       network redirections
  7037. SeeAlso: AX=AF00h"WinDOS",INT 21/AH=60h
  7038. --------O-2FAF17-----------------------------
  7039. INT 2F - WinDOS v2.11 - QUERY FOR NEW CURRENT DRIVE
  7040.     AX = AF17h
  7041. Return: nothing
  7042. Desc:    pop up a dialog allowing the user to select a new default drive
  7043. SeeAlso: AX=AF00h"WinDOS"
  7044. --------O-2FAF18-----------------------------
  7045. INT 2F - WinDOS v2.11 - SET CTRL-C/CTRL-BREAK DISABLE FLAG
  7046.     AX = AF18h
  7047.     DL = new break-checking state (00h enabled, 01h disabled)
  7048. Return: nothing
  7049. SeeAlso: AX=AF00h"WinDOS"
  7050. --------O-2FAF19-----------------------------
  7051. INT 2F - WinDOS v2.11 - SET HEAD SETTLE FLAG
  7052.     AX = AF19h
  7053.     DL = new state
  7054.         00h diskette head settling time reset to 15ms before each access
  7055.         01h no additional head settling time used between accesses
  7056. Return: nothing
  7057. SeeAlso: AX=AF00h"WinDOS"
  7058. --------O-2FAF1A-----------------------------
  7059. INT 2F - WinDOS v2.11 - SEARCH FOR NON-FRAGMENTED DISK AREA
  7060.     AX = AF1Ah
  7061.     BL = drive (00h = current, 01h = A:, etc.)
  7062.     CX = number of clusters desired
  7063. Return: CF clear if successful
  7064.         DI = first free cluster on logical drive
  7065.         BP = first cluster of contiguous free area
  7066.         AX destroyed
  7067.     CF set on error
  7068.         AX = DOS error code (see #0960 at INT 21/AH=59h)
  7069. Desc:    attempt to find an area of the disk containing the specified number
  7070.       of contiguous unallocated clusters
  7071. SeeAlso: AX=AF00h"WinDOS"
  7072. ----------2FAF30-----------------------------
  7073. INT 2F U - ???
  7074.     AX = AF30h
  7075.     ???
  7076. Return: ???
  7077. SeeAlso: AX=AF00h
  7078. --------d-2FAFDE-----------------------------
  7079. INT 2F - Disk-Emu - INSTALLATION CHECK / GET VERSION
  7080.     AX = AFDEh
  7081.     ES:DI -> 14-byte buffer for data (see #2146)
  7082. Return: AX = CFDEh (Carlos Fernandez Disk-Emu) if installed
  7083.         BX = version (BH = major, BL = minor)
  7084.  
  7085. Format of Disk-Emu information data:
  7086. Offset    Size    Description    (Table 2146)
  7087.  00h    BYTE    number of tracks
  7088.  01h    BYTE    sectors per track
  7089.  02h    WORD    bytes per sector
  7090.  04h    BYTE    number of heads
  7091.  05h    BYTE    flag: 00h inactive, 01h active
  7092.  06h    BYTE    write protection (00h none, 01h full, 02h pseudo)
  7093.  07h    BYTE    saved (00h some unsaved data, 01h all data saved)
  7094.  08h    BYTE    disk in memory (00h no, 01h yes)
  7095.  09h    WORD    EMS handle
  7096.  0Bh    WORD    XMS handle
  7097.  0Dh    BYTE    memory type used for disk (00h XMS, 01h EMS)
  7098. --------V-2FB000-----------------------------
  7099. INT 2F - DOS 3.3+ GRAFTABL.COM - INSTALLATION CHECK
  7100.     AX = B000h
  7101. Return: AL = status
  7102.         00h not installed, OK to install
  7103.         01h not installed, not OK to install
  7104.         FFh installed
  7105. Notes:    called by DISPLAY.SYS
  7106.     documented for DOS 5.0, but undocumented in prior versions
  7107. SeeAlso: AX=2300h,AX=2E00h,AX=B001h
  7108. --------V-2FB001-----------------------------
  7109. INT 2F - DOS 3.3+ GRAFTABL.COM - GET GRAPHICS FONT TABLE
  7110.     AX = B001h
  7111.     DS:BX -> DWORD buffer for address of 8x8 font table
  7112. Return: buffer filled
  7113.     AL = FFh
  7114. Note:    PC-DOS 3.30/4.01 and MS-DOS 6.0 set the font table offset to 0130h,
  7115.       MS-DOS 3.30 sets it to 0030h
  7116. SeeAlso: AH=2Eh"GRAFTABL",AX=B000h
  7117. --------I-2FB400-----------------------------
  7118. INT 2F - IBM PC3270 EMULATION PROG v3 - INSTALLATION CHECK
  7119.     AX = B400h
  7120. Return: AL = FFh if installed
  7121. --------I-2FB401-----------------------------
  7122. INT 2F - IBM PC3270 EMULATION PROG v3 - GET HOST BUFFER ADDRESS
  7123.     AX = B401h
  7124. Return: ES -> host screen buffer (PC ASCII format)
  7125.     ES unchanged if communications not started
  7126. --------I-2FB402-----------------------------
  7127. INT 2F - IBM PC3270 EMULATION PROG v3 - ???
  7128.     AX = B402h
  7129.     BX = ???
  7130. Return: ???
  7131. --------I-2FB403-----------------------------
  7132. INT 2F - IBM PC3270 EMULATION PROG v3 - ???
  7133.     AX = B403h
  7134.     ???
  7135. Return: ???
  7136. --------I-2FB404-----------------------------
  7137. INT 2F - IBM PC3270 EMULATION PROG v3 - ???
  7138.     AX = B404h
  7139.     ???
  7140. Return: ???
  7141. --------I-2FB405-----------------------------
  7142. INT 2F - IBM PC3270 EMULATION PROG v3 - ???
  7143.     AX = B405h
  7144.     ???
  7145. Return: ???
  7146. --------f-2FB700-----------------------------
  7147. INT 2F - APPEND - INSTALLATION CHECK
  7148.     AX = B700h
  7149. Return: AL = status
  7150.         00h not installed
  7151.         FFh installed
  7152. Note:    MS-DOS 3.30 APPEND refuses to install itself when run inside TopView or
  7153.       a TopView-compatible environment
  7154. SeeAlso: AX=B702h
  7155. --------f-2FB701-----------------------------
  7156. INT 2F U - APPEND v3.21 only - GET APPEND PATH
  7157.     AX = B701h
  7158. Return: ES:DI -> active APPEND path
  7159. Notes:    the only version of APPEND known to support this call is the APPEND
  7160.       shipped with Microtek MS-DOS 3.21; MS-DOS 3.30-6.00 APPEND displays
  7161.       "Incorrect APPEND Version" and aborts the caller
  7162.     use AX=B704h first, and only call this function if that one is not
  7163.       supported
  7164. SeeAlso: AX=B700h,AX=B704h
  7165. --------f-2FB702-----------------------------
  7166. INT 2F - APPEND - GET VERSION
  7167.     AX = B702h
  7168. Return: AX = FFFFh if not DOS 4.0 APPEND (also if DOS 5.0 APPEND)
  7169.     AL = major version number
  7170.     AH = minor version number, otherwise
  7171. SeeAlso: AX=B700h,AX=B710h
  7172. --------f-2FB703-----------------------------
  7173. INT 2F U - DOS 3.3, DOS 5.0 APPEND - HOOK INT 21
  7174.     AX = B703h
  7175.     ES:DI -> INT 21 handler APPEND should chain to
  7176. Return: ES:DI -> APPEND's INT 21 handler
  7177. Note:    each invocation of this function toggles a flag which APPEND uses to
  7178.       determine whether to chain to the user handler or the original
  7179.       INT 21
  7180. SeeAlso: AX=B700h,AX=B706h
  7181. --------f-2FB704-----------------------------
  7182. INT 2F - DOS 3.3+ APPEND - GET APPEND PATH
  7183.     AX = B704h
  7184. Return: ES:DI -> active APPEND path (128 bytes max)
  7185. Note:    some versions of append do not support this call, and return ES
  7186.       unchanged; in this case, you should call AX=B701h to get the APPEND
  7187.       path
  7188. SeeAlso: AX=B701h
  7189. --------f-2FB706-----------------------------
  7190. INT 2F - DOS 4.0+ APPEND - GET APPEND FUNCTION STATE
  7191.     AX = B706h
  7192. Return: BX = APPEND state (see #2147)
  7193. SeeAlso: AX=B700h,AX=B707h
  7194.  
  7195. Bitfields for APPEND state:
  7196. Bit(s)    Description    (Table 2147)
  7197.  0    set if APPEND enabled
  7198.  1-11    reserved
  7199.  12    (DOS 5.0) set if APPEND applies directory search even if a drive has
  7200.       been specified
  7201.  13    set if /PATH flag active
  7202.  14    set if /E flag active (environment var APPEND exists)
  7203.  15    set if /X flag active
  7204. --------f-2FB707-----------------------------
  7205. INT 2F - DOS 4.0+ APPEND - SET APPEND FUNCTION STATE
  7206.     AX = B707h
  7207.     BX = APPEND state bits (see #2147)
  7208. SeeAlso: AX=B700h,AX=B706h
  7209. --------f-2FB710-----------------------------
  7210. INT 2F U - DOS 3.3+ APPEND - GET VERSION INFO
  7211.     AX = B710h
  7212. Return: AX = current APPEND state (see #2147)
  7213.     BX = ??? (0000h in MS-DOS 3.30 and 5.00)
  7214.     CX = ??? (0000h in MS-DOS 3.30 and 5.00)
  7215.     DL = major version
  7216.     DH = minor version
  7217. SeeAlso: AX=B700h,AX=B702h
  7218. --------f-2FB711-----------------------------
  7219. INT 2F - DOS 4.0+ APPEND - SET RETURN FOUND NAME STATE
  7220.     AX = B711h
  7221. Note:    if the next INT 21h call (and ONLY the next) is function 3Dh, 43h, or
  7222.       6Ch (also 4B03h and 4Eh if /X active), the fully qualified filename
  7223.       is written over top of the filename passed to the INT 21h call.  The
  7224.       application must provide a sufficiently large buffer.     This state is
  7225.       reset after the next INT 21h call processed by APPEND.
  7226.     APPEND uses the byte at offset 3Dh in the PSP
  7227.       (see #0677 at INT 21/AH=26h) to store the flag telling it to
  7228.       overwrite the filename
  7229. BUG:    DOS 4.0 APPEND reportedly overwrites DS:DX instead of DS:SI for
  7230.       INT 21/AH=6Ch
  7231. SeeAlso: INT 21/AH=26h,INT 21/AH=4Eh
  7232. --------N-2FB800-----------------------------
  7233. INT 2F - NETWORK - INSTALLATION CHECK
  7234.     AX = B800h
  7235. Return: AL = status
  7236.         00h        not installed
  7237.         nonzero installed
  7238.           BX = installed component flags (test in this order!)
  7239.            bit 6   server
  7240.            bit 2   messenger
  7241.            bit 7   receiver
  7242.            bit 3   redirector
  7243.            bit 1   LANPUP (LANtastic 4.0)
  7244. Notes:    this function is supported by PC LAN Program, LAN Manager, LANtastic,
  7245.       NetWare Lite, SilverNET, 10NET, etc.
  7246.     LANtastic and NetWare Lite use only BL for the return value, preserving
  7247.       BH; LAN Manager and DOS LAN Requester return BH=00h.    This permits
  7248.       differentiation between those two groups by setting BH to a nonzero
  7249.       value before the call and checking its value on return.
  7250. SeeAlso: AX=4E53h,AX=B809h
  7251. --------N-2FB800CXF041-----------------------
  7252. INT 2F - 10NET - INSTALLATION CHECK
  7253.     AX = B800h
  7254.     CX = F041h
  7255. Return: AL = status
  7256.         00h        not installed
  7257.         nonzero installed
  7258.         BX = installed component flags (test in this order!)
  7259.            bit 6   server
  7260.            bit 2   messenger
  7261.            bit 7   receiver
  7262.            bit 3   redirector
  7263.            bit 1   LANPUP (LANtastic 4.0)
  7264.         CX = 10Net data segment
  7265.         CX:DX -> 10Net Configuration Table
  7266.               (see #0971 at INT 21/AX=5E01h"10NET")
  7267. Note:    if CX <> F041h on entry, neither CX nor DX will be changed, and this
  7268.       call becomes identical to the standard installation check above
  7269. SeeAlso: AX=B800h"network",INT 21/AX=5E01h"10NET"
  7270. --------N-2FB803-----------------------------
  7271. INT 2F - NETWORK - GET NETWORK EVENT POST HANDLER
  7272.     AX = B803h
  7273. Return: ES:BX -> current event post handler (see AX=B804h)
  7274. Note:    this function is supported by PC LAN Program, 10NET v5.0
  7275. SeeAlso: AC=B800h,AX=B804h,AX=B903h
  7276. --------N-2FB804-----------------------------
  7277. INT 2F - NETWORK - SET NETWORK EVENT POST HANDLER
  7278.     AX = B804h
  7279.     CX = (10NET) 0370h if 10Windows is hooking post handler
  7280.     ES:BX -> new event post handler (see #2148)
  7281. Notes:    used in conjunction with AX=B803h to hook into the network event post
  7282.       routine
  7283.     this function is supported by PC LAN Program, 10NET v5.0
  7284.     The specified handler is called on any network event.  Two events are
  7285.       defined: message received and critical network error.
  7286. SeeAlso: AX=B800h,AX=B803h,AX=B904h
  7287.  
  7288. (Table 2148)
  7289. Values network post routine is called with:
  7290.     AX = 0000h single block message
  7291.         DS:SI -> ASCIZ originator name
  7292.         DS:DI -> ASCIZ destination name
  7293.         ES:BX -> text header (see #2149)
  7294.     AX = 0001h start multiple message block
  7295.         CX = block group ID
  7296.         DS:SI -> ASCIZ originator name
  7297.         DS:DI -> ASCIZ destination name
  7298.     AX = 0002h multiple block text
  7299.         CX = block group ID
  7300.         ES:BX -> text header (see #2149)
  7301.     AX = 0003h end multiple block message
  7302.         CX = block group ID
  7303.     AX = 0004h message aborted due to error
  7304.         CX = block group ID
  7305.     AX = 0101h server received badly formatted network request
  7306.         Return: AX = FFFFh (PC LAN will process error)
  7307.     AX = 0102h unexpected network error
  7308.         ES:BX -> NCB (see #2381 at INT 5C)
  7309.     AX = 0103h server received INT 24 error
  7310.         other registers as for INT 24, except AH is in BH
  7311.         Return: as below, but only 0000h and FFFFh allowed
  7312. Return: AX = response code
  7313.         0000h user post routine processed message
  7314.         0001h PC LAN will process message, but message window not displayed
  7315.         FFFFh PC LAN will process message
  7316.  
  7317. Format of text header:
  7318. Offset    Size    Description    (Table 2149)
  7319.  00h    WORD    length of text (maximum 512 bytes)
  7320.  02h  N BYTEs    text of message
  7321. Note:    all CRLF sequences in message text are replaced by 14h; all other
  7322.       values below 20h (space) are reserved
  7323. --------N-2FB807-----------------------------
  7324. INT 2F - NETWORK - GET NetBIOS NAME NUMBER OF MACHINE NAME
  7325.     AX = B807h
  7326. Return: CH = NetBIOS name number of the machine name
  7327. SeeAlso: INT 21/AX=5E00h
  7328. --------N-2FB808-----------------------------
  7329. INT 2F U - NETWORK - RELINK KEYBOARD HANDLER
  7330.     AX = B808h
  7331.     ES:BX -> INT 09 handler network should call after it finishes INT 09
  7332. Notes:    this call replaces the address to which the network software chains on
  7333.       an INT 09 without preserving the original value.  This allows a prior
  7334.       handler to unlink, but does not allow a new handler to be added
  7335.       such that the network gets the INT 09 first unless the new handler
  7336.       completely takes over INT 09 and never chains.
  7337.     this function is called by the DOS 3.2 KEYBxx.COM
  7338. SeeAlso: AX=B908h
  7339. --------N-2FB809-----------------------------
  7340. INT 2F - NETWORK - LANtastic, NetWare Lite - GET VERSION
  7341.     AX = B809h
  7342. Return: AH = major version
  7343.     AL = minor version (decimal)
  7344. Notes:    this function is supported in this form by LANtastic, NetWare Lite,
  7345.       SilverNET, ...
  7346.     NetWare Lite returns its own version number rather than a PC LAN
  7347.       compatibility version
  7348. SeeAlso: AX=4E53h,AX=B800h,AX=B809h"PC LAN Program"
  7349. --------N-2FB809-----------------------------
  7350. INT 2F - NETWORK - PC LAN Program - GET VERSION
  7351.     AX = B809h
  7352. Return: AH = minor version (decimal)
  7353.     AL = major version
  7354. Notes:    this function is supported in this form by PC LAN Program, LAN Manager,
  7355.       the DOS LAN Requester, and 10NET v5.0
  7356.     10NET returns version 1.10 (AX=0A01h) for compatibility
  7357. SeeAlso: AX=4E53h,AX=B800h,AX=B809h"LANtastic"
  7358. --------N-2FB80A-----------------------------
  7359. INT 2F u - PC Network 1.00 - ???
  7360.     AX = B80Ah
  7361.     ???
  7362. Return: ???
  7363. Program: PC Network is an early networking package which was renamed the
  7364.       IBM PC Local Area Network Program (PC LAN Program) as of v1.10
  7365. Note:    called by RECEIVER (equivalent to NetWare Lite SERVER)
  7366. --------N-2FB80F-----------------------------
  7367. INT 2F - DOS LAN Requester - GET START PARAMETERS
  7368.     AX = B80Fh
  7369.     CX = size of return data buffer
  7370.     ES:DI -> return data buffer (see #2150)
  7371. Return: AX = status
  7372.          00h     network started
  7373.          nonzero network not started
  7374.     CX = number of bytes returned in buffer
  7375.     ES:DI buffer filled
  7376. SeeAlso: AX=B809h"PC LAN Program"
  7377.  
  7378. Format of DOS LAN Requester return data buffer:
  7379. Offset    Size    Description    (Table 2150)
  7380.  00h    BYTE    major version
  7381.  01h    BYTE    minor version
  7382.  02h    WORD    configuration flags given when network was started (see #2151)
  7383.  04h 15 BYTEs    NET START machine name (space padded)
  7384.  13h    BYTE    00h
  7385.  14h 9    BYTEs    NET START domain name (NULL padded)
  7386.  1Dh    BYTE    00h
  7387.  1Eh 32 BYTEs    /WRK heuristics string (space padded, not terminated)
  7388.  3Eh    WORD    /SRV value
  7389.  40h    WORD    /ASG value
  7390.  42h    WORD    /NBC value
  7391.  44h    WORD    /NBS value
  7392.  46h    WORD    /BBC value
  7393.  48h    WORD    /BBS value
  7394.  4Ah    WORD    /PBC value
  7395.  4Ch    WORD    /PBS value
  7396.  4Eh    WORD    /PFS value
  7397.  50h    WORD    /PFT value
  7398.  52h    WORD    /PWT value
  7399.  54h    WORD    /KUC value
  7400.  56h    WORD    /KST value
  7401.  58h    WORD    /NVS value
  7402.  5Ah    WORD    /NMS value
  7403.  5Ch    WORD    /NDB value
  7404.  5Eh    WORD    /MBI value
  7405.  60h    BYTE    NetBIOS name number for machine name
  7406.  61h    BYTE    NetBIOS name number for domain name
  7407.  62h    WORD    NetBIOS sessions required for configuration
  7408.  64h    WORD    NetBIOS commands required for configuration
  7409.  66h    WORD    NetBIOS names required for configuration
  7410.  68h 128 BYTEs    NET START path (LANROOT)
  7411.  E8h    BYTE    00h
  7412.  
  7413. Bitfields for configuration flags:
  7414. Bit(s)    Description    (Table 2151)
  7415.  0    /NVS nonzero
  7416.  1    /NMS nonzero
  7417.  2    /API
  7418.  3    /HIM
  7419.  4    /LIM
  7420.  5    /ENC
  7421.  6    /POP
  7422.  7    /EMS
  7423.  8    /RPL
  7424.  9-12    reserved
  7425.  13    RDR started
  7426.  14    RCV started
  7427.  15    User is currently logged on
  7428. --------N-2FB900-----------------------------
  7429. INT 2F - PC Network RECEIVER.COM - INSTALLATION CHECK
  7430.     AX = B900h
  7431. Return: AL = state
  7432.         00h if not installed
  7433.         FFh if installed
  7434. --------N-2FB901-----------------------------
  7435. INT 2F - PC Network RECEIVER.COM - GET RECEIVER.COM INT 2F HANDLER ADDRESS
  7436.     AX = B901h
  7437. Return: AL = ???
  7438.     ES:BX -> RECEIVER.COM INT 2F handler
  7439. Desc:    allows more efficient execution by letting the caller bypass any other
  7440.       INT 2F handlers which have been added since RECEIVER.COM was
  7441.       installed
  7442. --------N-2FB903-----------------------------
  7443. INT 2F - PC Network RECEIVER.COM - GET RECEIVER.COM POST ADDRESS
  7444.     AX = B903h
  7445. Return: ES:BX -> POST handler
  7446. SeeAlso: AX=B803h,AX=B904h
  7447. --------N-2FB904-----------------------------
  7448. INT 2F - PC Network RECEIVER.COM - SET RECEIVER.COM POST ADDRESS
  7449.     AX = B904h
  7450.     ES:BX -> new POST handler
  7451. SeeAlso: AX=B804h,AX=B903h
  7452. --------N-2FB905-----------------------------
  7453. INT 2F - PC Network RECEIVER.COM - GET FILENAME
  7454.     AX = B905h
  7455.     DS:BX -> 128-byte buffer for filename 1
  7456.     DS:DX -> 128-byte buffer for filename 2
  7457. Return: buffers filled from RECEIVER.COM internal buffers
  7458. Note:    use of filenames is unknown, but one appears to be for storing messages
  7459. SeeAlso: AX=B906h
  7460. --------N-2FB906-----------------------------
  7461. INT 2F - PC Network RECEIVER.COM - SET FILENAME
  7462.     AX = B906h
  7463.     DS:BX -> 128-byte buffer for filename 1
  7464.     DS:DX -> 128-byte buffer for filename 2
  7465. Return: RECEIVER.COM internal buffers filled from user buffers
  7466. Note:    use of filenames is unknown, but one appears to be for storing messages
  7467. SeeAlso: AX=B905h
  7468. --------N-2FB908-----------------------------
  7469. INT 2F - PC Network RECEIVER.COM - UNLINK KEYBOARD HANDLER
  7470.     AX = B908h
  7471.     ES:BX -> INT 09 handler RECEIVER should call after it finishes INT 09
  7472. Note:    this call replaces the address to which RECEIVER.COM chains on an
  7473.       INT 09 without preserving the original value.     This allows a prior
  7474.       handler to unlink, but does not allow a new handler to be added
  7475.       such that RECEIVER gets the INT 09 first.
  7476. SeeAlso: AX=B808h
  7477. --------V-2FBC00-----------------------------
  7478. INT 2F - Windows 3.0, DOS 5+ EGA.SYS - INSTALLATION CHECK
  7479.     AX = BC00h
  7480. Return: AL = state
  7481.         00h not installed, OK to install
  7482.         01h not installed, not OK to install
  7483.         FFh installed
  7484.         BX = 5456h ("TV")
  7485. Range:    AH=80h to AH=FFh, selected by commandline switch
  7486. SeeAlso: AX=BC06h"EGA",INT 10/AH=FAh"EGA"
  7487. --------s-2FBC00BX3F3F-----------------------
  7488. INT 2F - MediaVision MVSOUND.SYS - INSTALLATION CHECK
  7489.     AX = BC00h
  7490.     BX = 3F3Fh ('??')
  7491.     CX = 0000h
  7492.     DX = 0000h
  7493. Return: if installed, BX XOR CX XOR DX = 4D56h ('MV')
  7494. Program: MVSOUND.SYS is a driver for the MediaVision ProAudio Spectrum family
  7495.       of sound boards; its primary programmer was Bryan Crane
  7496. SeeAlso: AX=BC01h"MVSOUND",AX=BC02h,AX=BC03h,AX=BC04h,AX=BC06h"MVSOUND"
  7497. --------s-2FBC01-----------------------------
  7498. INT 2F - MediaVision MVSOUND.SYS - GET VERSION
  7499.     AX = BC01h
  7500.     BX = magic value 6D20h ('m ')
  7501.     CX = magic value 2076h (' v')
  7502.     DX = magic value 2020h ('  ')
  7503. Return: BX = ASCII major version (leading zeros significant)
  7504.     CX = ASCII minor version (leading zeros significant)
  7505. SeeAlso: AX=BC00h/BX=3F3Fh
  7506. --------s-2FBC02-----------------------------
  7507. INT 2F - MediaVision MVSOUND.SYS - GET STATE TABLE POINTER
  7508.     AX = BC02h
  7509. Return: BX:DX -> state table
  7510. SeeAlso: AX=BC00h/BX=3F3Fh,AX=BC03h
  7511. --------s-2FBC03-----------------------------
  7512. INT 2F - MediaVision MVSOUND.SYS - GET FUNCTION TABLE POINTER
  7513.     AX = BC03h
  7514. Return: BX:DX -> function table
  7515. SeeAlso: AX=BC00h/BX=3F3Fh,AX=BC02h
  7516. --------s-2FBC04-----------------------------
  7517. INT 2F - MediaVision MVSOUND.SYS - GET DMA AND IRQ CHANNELS
  7518.     AX = BC04h
  7519. Return: AX = 4D56h ('MV')
  7520.     BL = DMA channel
  7521.     CL = IRQ number
  7522. SeeAlso: AX=BC00h/BX=3F3Fh,AX=BC01h"MVSOUND"
  7523. --------V-2FBC06-----------------------------
  7524. INT 2F U - MS Windows 3.0, DOS 5+ EGA.SYS - GET VERSION INFO
  7525.     AX = BC06h
  7526. Return: BX = 5456h ("TV")
  7527.     CH = major version
  7528.     CL = minor version
  7529.     DL = revision
  7530. SeeAlso: AX=BC00h"EGA",INT 10/AH=FAh"EGA"
  7531. --------s-2FBC06-----------------------------
  7532. INT 2F - MediaVision MVSOUND.SYS - GET STATUS STRING
  7533.     AX = BC06h
  7534. Return: AX = 4D56h ('MV')
  7535.     DX:BX -> status string (first byte 0Ch if no status message to display)
  7536. SeeAlso: AX=BC00h/BX=3F3Fh,AX=BC01h"MVSOUND",AX=BC0Bh"MVSOUND"
  7537. --------s-2FBC0B-----------------------------
  7538. INT 2F - MediaVision MVSOUND.SYS - GET EXECUTABLE PATH
  7539.     AX = BC0Bh
  7540. Return: BX:DX -> ASCIZ path for MVPROAS.EXE, 0000h:0000h if not available
  7541. SeeAlso: AX=BC00h/BX=3F3Fh
  7542. --------U-2FBE00-----------------------------
  7543. INT 2F - REDVIEW - INSTALLATION CHECK
  7544.     AX = BE00h
  7545. Return: AL = FFh if installed
  7546. Program: REDVIEW is a public-domain TSR by Alexandr Novy and Petr Horak which
  7547.       copies data sent to standard output to standard error when the
  7548.       former has been redirected to a file, thus allowing the data to
  7549.       be seen on the screen at the same time it is captured in a file
  7550. --------N-2FBF00-----------------------------
  7551. INT 2F - PC LAN PROGRAM REDIRIFS.EXE internal - INSTALLATION CHECK
  7552.     AX = BF00h
  7553. Return: AL = FFh if installed
  7554. --------N-2FBF01-----------------------------
  7555. INT 2F U - PC LAN PROGRAM REDIRIFS.EXE internal - ???
  7556.     AX = BF01h
  7557.     ???
  7558. Return: ???
  7559. --------N-2FBF80-----------------------------
  7560. INT 2F - PC LAN PROG REDIR.SYS internal - SET REDIRIFS ENTRY POINT
  7561.     AX = BF80h
  7562.     ES:DI -> FAR entry point to IFS handler in REDIRIFS
  7563. Return: AL = FFh if installed
  7564.         ES:DI -> internal workspace
  7565. Note:    all future IFS calls to REDIR.SYS are passed to the ES:DI entry point
  7566. --------F-2FC0-------------------------------
  7567. INT 2F - MTEZ XpressFax Hardware TSR (CLASS2) - API
  7568.     AH = C0h
  7569.     AL = function code (01h to 15h)
  7570. Return: ???
  7571. SeeAlso: AX=C000h/BX=444Bh,AX=CB00h/BX=4D53h
  7572. --------N-2FC000-----------------------------
  7573. INT 2F - Novell ODI Link Support Layer (LSL.COM) - INSTALLATION CHECK
  7574.     AX = C000h
  7575. Return: AL = FFh if installed
  7576.         DX:BX -> FAR entry point (see #2152,#2153,#2154)
  7577.         ES:SI -> signature string "LINKSUP$"
  7578. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  7579. Note:    on return, ES = DX for LSL v1.10 and v2.05; LSL makes use of this in
  7580.       its search for a previous installation
  7581. SeeAlso: AX=5100h,AX=C000h"NESL"
  7582.  
  7583. (Table 2152)
  7584. Call LSL function "Request MLID Registration" with:
  7585.     BX = 0001h
  7586.     ES:SI -> registration??? record (see #2156)
  7587.     DS:DI -> buffer for LSL information block (see #2157)
  7588. Return: AX = completion code (0000h,8001h) (see #2155)
  7589.     DS:DI buffer filled if successful
  7590.     BX,CX corrupted
  7591. Note:    see "Novell LAN Driver Developer's Guide, Volume III" for more details
  7592.  
  7593. (Table 2153)
  7594. Call LSL function "get support entry points" with:
  7595.     BX = 0002h
  7596.     ES:SI -> buffer for entry point record (see #2158)
  7597. Return: ES:SI buffer filled
  7598.  
  7599. (Table 2154)
  7600. Call LSL function "Request MLID API entry point" with:
  7601.     BX = 0003h
  7602. Return: ES:SI -> MLID (Multiple Link Interface Driver) API entry point
  7603.         (call with BX=function 00h-10h, not range-checked)
  7604. Note:    LSL v1.10 and v2.05 execute BX=0003h for BX=0000h and any BX >= 0003h
  7605.  
  7606. (Table 2155)
  7607. Values for LSL completion code:
  7608.  0000h    successful
  7609.  8001h    out of resources
  7610.  8002h    bad parameter
  7611.  8003h    no more items
  7612.  8004h    item not present
  7613.  8005h    failed
  7614.  8006h    receive overflow
  7615.  8007h    canceled
  7616.  8008h    bad command
  7617.  8009h    duplicate entry
  7618.  800Ah    no such handler
  7619.  800Bh    no such driver
  7620.  
  7621. Format of LSL registration record:
  7622. Offset    Size    Description    (Table 2156)
  7623.  00h    DWORD    -> ??? FAR function (to be called with ES:SI -> ??? and
  7624.           returning AX = completion code)
  7625.  04h    DWORD    -> ???
  7626.  08h    DWORD    -> ??? data (at least 3Eh bytes)
  7627.  
  7628. Format of LSL information block:
  7629. Offset    Size    Description    (Table 2157)
  7630.  00h    DWORD    -> ??? entry point (called with BX=function 00h-11h)
  7631.  04h    WORD    ???
  7632.  06h    WORD    ???
  7633. Note:    due to a fencepost error, LSL v2.05 (distributed with Novell DOS 7)
  7634.       will crash if the above entry point is called with BX=0012h
  7635.  
  7636. Format of entry point record:
  7637. Offset    Size    Description    (Table 2158)
  7638.  00h    DWORD    pointer to protocol support entry point in LSL (see #2159)
  7639.  04h    DWORD    pointer to general support entry point in LSL (see #2160)
  7640.  
  7641. (Table 2159)
  7642. Call protocol support entry point with:
  7643.     BX = function number
  7644.         0000h ???
  7645.         0001h ???
  7646.         0002h ???
  7647.         0003h "ScheduleAESEvent"
  7648.         ES:SI -> AES ECB to be scheduled (see #2163)
  7649.         Return: ES,SI preserved
  7650.         0004h "CancelAESEvent"
  7651.         ES:SI -> ECB to be cancelled (see #2163)
  7652.         Return: ES,SI preserved
  7653.         0005h "GetIntervalMarker"
  7654.         Return: DX:AX = current interval marker in milliseconds
  7655.             all other registers preserved
  7656.         0006h "RegisterStack"
  7657.         AX = logical board number
  7658.         ES:SI -> bound stack info structure (see #2173)
  7659.         Return: BX = assigned Stack ID if AX=0000h
  7660.         0007h "DeRegisterStack"
  7661.         AX = protocol stack's assigned Stack ID
  7662.         0008h "RegisterDefaultStack"
  7663.         AX = logical board number
  7664.         ES:SI -> stack info structure (see #2174)
  7665.         0009h "DeRegisterDefaultStack"
  7666.         AX = logical board number
  7667.         000Ah "RegisterPrescanStack"
  7668.         AX = logical board number
  7669.         ES:SI -> stack info structure (see #2174)
  7670.         000Bh "DeRegisterPrescanStack"
  7671.         AX = logical board number
  7672.         000Ch "SendPacket"
  7673.         ES:SI -> send ECB
  7674.         Return: interrupts disabled
  7675.         000Dh ???
  7676.         000Eh ???
  7677.         000Fh ???
  7678.         0010h "GetStackIDFromName"
  7679.         ES:SI -> counted NUL-terminated protocol name (max 15 chars)
  7680.         Return: BX = Stack ID if AX=0000h
  7681.         0011h "GetPIDFromStackIDBoard"
  7682.         AX = Stack ID for protocol
  7683.         CX = logical board number
  7684.         ES:SI -> 6-byte buffer for protocol ID
  7685.         0012h "GetMLIDControlEntry"
  7686.         AX = logical board number
  7687.         Return: ES:SI -> MLID control handler (see #2161) if AX=0000h
  7688.         0013h "GetProtocolControlEntry"
  7689.         AX = Stack ID or
  7690.             FFFEh Prescan stack
  7691.                 CX = logical board number
  7692.             FFFFh default protocol
  7693.                 CX = logical board number
  7694.         Return: ES:SI -> protocol stack control entry point if AX=0000h
  7695.                   (see #2162)
  7696.         0014h "GetLSLStatistics"
  7697.         Return: AX = 0000h (successful)
  7698.             ZF set
  7699.             ES:SI -> LSL statistics table (see #2165)
  7700.         0015h "BindStack"
  7701.         AX = protocol stack's assigned Stack ID
  7702.         CX = logical board number
  7703.         0016h "UnbindStack"
  7704.         AX = protocol stack's assigned Stack ID
  7705.         CX = logical board number
  7706.         0017h "AddProtocolID"
  7707.         AX = frame type ID code
  7708.         ES:SI -> 6-byte protocol ID
  7709.         CX:DI -> counted NUL-terminated short protocol name (max 15 ch)
  7710.         0018h "RelinquishControl"
  7711.         Return: after LSL performs any necessary background processing
  7712.         0019h "GetLSLConfiguration"
  7713.         Return: AX = 0000h (successful)
  7714.             ZF set
  7715.             ES:SI -> LSL configuration table (see #2164)
  7716.         001Ah "GetTickMarker"
  7717.         Return: AX = number of 55ms ticks since LSL loaded
  7718.             BX destroyed
  7719. Return: AX = completion code (see #2155)
  7720.     ZF set if successful
  7721.     SS:SP, DS, BP preserved; most other registers may be destroyed
  7722.  
  7723. (Table 2160)
  7724. Call general support entry point with:
  7725.     BX = function number
  7726.         0000h "Allocate Memory" (obsolete)
  7727.          always returns AX=8008h (BAD_COMMAND)
  7728.         0001h "Free Memory" (obsolete)
  7729.          always returns AX=8008h (BAD_COMMAND)
  7730.         0002h "Realloc Memory" (obsolete)
  7731.          always returns AX=8008h (BAD_COMMAND)
  7732.         0003h "Memory Statistics" (obsolete)
  7733.          always returns AX=8008h (BAD_COMMAND)
  7734.         0004h "Add Memory To Pool" (obsolete)
  7735.          always returns AX=8008h (BAD_COMMAND)
  7736.         0005h "AddGeneralService"
  7737.         ES:SI -> General Service Control Block (see #2175)
  7738.         0006h "RemoveGeneralService"
  7739.         ES:SI -> General Service Control Block (see #2175)
  7740.         0007h "GetNETcfgPath"
  7741.         Return: AX = 0000h (successful)
  7742.             DS:DX -> ASCIZ pathname for NET.CFG
  7743.         0008h U ???     (in LSL 1.10)
  7744.         Return: AX = 0000h
  7745.             ES:SI -> ??? (a 22-byte data area)
  7746.         000Ah "GetCriticalSectionStatus"
  7747.         Return: BX = total outstanding calls to "StartCriticalSection"
  7748.         000Bh "ServiceEvents"
  7749.         interrupts disabled
  7750.         Return: interrupts disabled
  7751.         0010h "GetStackECB"
  7752.         DS:DI -> Lookahead structure (see #2176)
  7753.         interrupts disabled
  7754.         Return: ES:SI -> ECB if successful (AX=0000h,ZF set)
  7755.             interrupts disabled
  7756.         8000h-FFFFh reserved for user general service providers
  7757. Return: AX = completion code (see #2155)
  7758.     ZF set if successful
  7759.     SS:SP, DS, BP preserved
  7760.  
  7761. (Table 2161)
  7762. Call MLID control handler with:
  7763.     AX = logical board number
  7764.     BX = function number
  7765.         0000h "GetMLIDConfiguration"
  7766.         Return: ES:SI -> MLID's configuration table if successful
  7767.                   (see #2168 for format)
  7768.         0001h "GetMLIDStatistics"
  7769.         Return: ES:SI -> MLID's statistics table if successful
  7770.                   (see #2168 for format)
  7771.         0002h "AddMulticastAddress"
  7772.         ES:SI -> 6-byte multicast address to add
  7773.         0003h "DeleteMulticastAddress"
  7774.         ES:SI -> 6-byte multicast address to delete
  7775.         0005h "MLIDShutdown"
  7776.         CX = type
  7777.             0000h permanent (also deregisters from LSL)
  7778.             other temporary (shutdown hardware only)
  7779.         0006h "MLIDReset" reinitialize board / restart from temp shutdown
  7780.         0007h "Create Connection" (obsolete?)
  7781.         ???
  7782.         0008h "Delete Connection" (obsolete?)
  7783.         ???
  7784.         0009h "SetLookAheadSize"
  7785.         CX = requested lookahead size (00h-80h)
  7786.         000Ah "PromiscuousChange"
  7787.         CX = what to receive promiscuously
  7788.             bit 0: MAC frames
  7789.             bit 1: non-MAC frames
  7790.         000Bh "RegisterReceiveMonitor"
  7791.         CX = subfunction
  7792.             0000h disable receive monitoring
  7793.             else  enable receive monitoring
  7794.         ES:SI -> monitor receive routine
  7795.         ES:DI -> monitor transmit routine
  7796.         000Ch "Driver Poll" (obsolete?)
  7797.         ???
  7798. Return: AX = completion code (see #2155)
  7799.     ZF set if successful
  7800. Note:    not all boards/MLIDs support function 0010h; see bit 13 in the MLID
  7801.       mode flags field of the MLID's configuration table
  7802.  
  7803. (Table 2162)
  7804. Call protocol stack control entry point with:
  7805.     BX = function number
  7806.         0000h "GetProtocolStackConfiguration"
  7807.         Return: ES:SI -> protocol stack's configuration table
  7808.                    (see #2167)
  7809.         0001h "GetProtocolStackStatistics"
  7810.         Return: ES:SI -> protocol stack's statistics table (see #2166)
  7811.         0002h "BindToMLID"
  7812.         CX = board number to bind to
  7813.         ES:SI -> implementation-dependant parameter string
  7814.         0003h "UnBindFromMLID"
  7815.         CX = board number from which protocol should unbind
  7816.         ES:SI -> optional implementation-dependant parameter string
  7817.         0004h "MLIDDeRegistered"
  7818.         CX = board number that has de-registered from LSL
  7819. Return: AX = status
  7820.         0000h successful
  7821.         else implementation-dependant error codes
  7822.     ZF set if successful
  7823.     SS:SP, DS, BP preserved
  7824.  
  7825. Format of AES ECB:
  7826. Offset    Size    Description    (Table 2163)
  7827.  00h    DWORD    "AESLink" pointer used by LSL for list management
  7828.  04h    DWORD    number of milliseconds to wait
  7829.  08h    DWORD    "AESStatus" (is set to 00000000h when AES ESR is invoked)
  7830.  0Ch    DWORD    -> function to be invoked when time expires
  7831.         ES:SI will point to this structure on entry,
  7832.         DS, BP, and SS:SP must be preserved.
  7833. SeeAlso: #2177
  7834.  
  7835. Format of LSL Configuration Table:
  7836. Offset    Size    Description    (Table 2164)
  7837.  00h    BYTE    major version of configuration table
  7838.  01h    BYTE    minor version of configuration table (decimal, 0-99)
  7839.  02h  8 BYTEs    reserved
  7840.  0Ah    BYTE    LSL major version (decimal)
  7841.  0Bh    BYTE    LSL minor version (decimal, 0-99)
  7842. ---LSL 1.0x ---
  7843.  0Ch 14 BYTEs    reserved
  7844. ---LSL 1.10+ ---
  7845.  0Ch    WORD    maximum number of boards which LSL can handle
  7846.  0Eh    WORD    maximum number of protocol IDs which LSL can handle
  7847.  10h 12 BYTEs    reserved
  7848.  
  7849. Format of LSL Statistics Table:
  7850. Offset    Size    Description    (Table 2165)
  7851.  00h    BYTE    major version of statistics table format
  7852.  01h    BYTE    minor version of statistics table format (decimal, 0-99)
  7853.  02h    WORD    "GenericCounters" number of counters in static portion of
  7854.           table
  7855.  04h    DWORD    "ValidCountersMask" bit mask indicating which generic
  7856.           counters are actually used.  Bit 31 = TotalTxPackets, bit 30
  7857.           is the next field, etc.
  7858.  08h    DWORD    "TotalTxPackets" total SendPacket requests made
  7859.  0Ch    DWORD    reserved
  7860.  10h    DWORD    reserved
  7861.  14h    DWORD    "AESEventsCount" number of completed AES events
  7862.  18h    DWORD    "PostponedEvents" number of events postponed due to critical
  7863.           sections inside the MLIDs
  7864.  1Ch    DWORD    "CancelAESFailures" number of times CancelAESEvent failed
  7865.  20h    DWORD    reserved
  7866.  24h    DWORD    reserved
  7867.  28h    DWORD    "TotalRxPackets" total number of GetStackECB requests
  7868.  2Ch    DWORD    "UnclaimedPackets" total number of packets not consumed by a
  7869.           protocol stack
  7870.  30h    WORD    "NumberCustom" number of custom variables that follow
  7871.  32h  N DWORDs    custom counters
  7872.       N DWORDs    -> CustomCounterStrN (one per custom counter)
  7873.     var    length-prepended and NULL terminated string for Counter 0
  7874.     ...
  7875.     var    length-prepended and NULL terminated string for Counter N-1
  7876. SeeAlso: #2166,#2172
  7877.  
  7878. Format of Protocol Stack Statistics Table:
  7879. Offset    Size    Description    (Table 2166)
  7880.  00h    BYTE    statistics table major version
  7881.  01h    BYTE    statistics table minor version (decimal, 0-99)
  7882.  02h    WORD    number of generic counters following
  7883.  04h    DWORD    "ValidCountersMask" (bitmask, bit 31 is TotalTxPackets)
  7884.  08h    DWORD    TotalTxPackets
  7885.  0Ch    DWORD    TotalRxPackets
  7886.  10h    DWORD    IgnoredRxPackets
  7887.  14h    WORD    number of custom counters
  7888.  16h  N DWORDs    custom counters
  7889.       N DWORDs    -> CustomCounterStrN (one per custom counter)
  7890.     var    length-prepended and NULL terminated string for Counter 0
  7891.     ...
  7892.     var    length-prepended and NULL terminated string for Counter N-1
  7893. SeeAlso: #2165,#2172
  7894.  
  7895. Format of Protocol Stack Configuration Table:
  7896. Offset    Size    Description    (Table 2167)
  7897.  00h    BYTE    configuration table major version
  7898.  01h    BYTE    configuration table minor version (decimal, 0-99)
  7899.  02h    DWORD    -> counted NUL-terminated long descriptive name for protocol
  7900.  06h    DWORD    -> counted NUL-terminated short name for protocol (15 chars)
  7901.  0Ah    BYTE    protocol stack major version
  7902.  0Bh    BYTE    protocol stack minor version (decimal, 0-99)
  7903.  0Ch 16 BYTEs    reserved for future use
  7904.  
  7905. Format of MLID Configuration Table:
  7906. Offset    Size    Description    (Table 2168)
  7907.  00h 26 BYTEs    signature 'HardwareDriverMLID         ' (8 spaces on end)
  7908.  1Ah    BYTE    configuration table major version
  7909.  1Bh    BYTE    configuration table minor version (decimal, 0-99)
  7910.  1Ch  6 BYTEs    node address
  7911.  22h    WORD    MLID mode flags (see #2169)
  7912.  24h    WORD    board number
  7913.  26h    WORD    board instance (if more than one of same board installed)
  7914.  28h    WORD    maximum packet size
  7915.  2Ah    WORD    BestDataSize
  7916.  2Ch    WORD    WorstDataSize
  7917.  2Eh    DWORD    -> counted NUL-terminated long name for NIC
  7918.  32h    DWORD    -> counted NUL-terminated short name for NIC (8 chars max)
  7919.  36h    DWORD    -> counted NUL-terminated Frame and Media type
  7920.  3Ah    WORD    reserved (0000h)
  7921.  3Ch    WORD    frame type ID
  7922.  3Eh    WORD    TransportTime (milliseconds)
  7923.  40h    DWORD    -> SourceRouteHandler for TokenRing. (Used by ROUTE.COM)
  7924.  44h    WORD    lookahead size
  7925.  46h    WORD    line speed (Mbps if high bit clear, else Kbps)
  7926.  48h    WORD    QueueDepth
  7927.  4Ah  6 BYTEs    reserved (0)
  7928.  50h    BYTE    driver major version
  7929.  51h    BYTE    driver minor version (decimal, 0-99)
  7930.  52h    WORD    bus/multicast flags (see #2170)
  7931.  54h    WORD    send retries
  7932.  56h    DWORD    ConfigTableLink
  7933.  5Ah    WORD    MLID sharing flags (see #2171)
  7934.  5Ch    WORD    slot number
  7935.  5Eh    WORD    I/O address 1
  7936.  60h    WORD    I/O range 1
  7937.  62h    WORD    I/O address 2
  7938.  64h    WORD    I/O range 2
  7939.  66h    DWORD    memory address 1
  7940.  6Ah    WORD    memory size 1
  7941.  6Ch    DWORD    memory address 2
  7942.  70h    WORD    memory size 2
  7943.  72h    BYTE    interrupt line 1
  7944.  73h    BYTE    interrupt line 2
  7945.  74h    BYTE    DMA line 1
  7946.  75h    BYTE    DMA line 2
  7947.  
  7948. Bitfields for MLID mode flags:
  7949. Bit(s)    Description    (Table 2169)
  7950.  15    MLID supports Octet Reversal
  7951.  14    node address is non-canonical
  7952.  13    promiscuous mode is supported
  7953.  12-8    reserved
  7954.  7    LDataSize field in LookAhead structure supported
  7955.  6    raw send supported
  7956.  5    MLID needs to be polled by LSL
  7957.  4    reserved (0)
  7958.  3    multicasting is supported
  7959.  2    not currently used by DOS ODI, set to 0.
  7960.  1    network card uses DMA.
  7961.  0    RealDriverBit, always set to 1.
  7962.  
  7963. Bitfields for bus/multicast flags:
  7964. Bit(s)    Description    (Table 2170)
  7965.  10-9    specialized multicast support
  7966.     00 = Group addressing is default for medium
  7967.     01 = Invalid
  7968.     10 = Filter group address in MLID.
  7969.     11 = Adapter filters group address.
  7970.  2    supports Micro Channel cards
  7971.  1    supports ISA cards
  7972.  0    supports EISA cards
  7973.  
  7974. Bitfields for MLID sharing flags:
  7975. Bit(s)    Description    (Table 2171)
  7976.  8    NIC can share DMA2
  7977.  7    NIC can share DMA1
  7978.  6    NIC can share IRQ2
  7979.  5    NIC can share IRQ1
  7980.  4    NIC can share Memory2
  7981.  3    NIC can share Memory1
  7982.  2    NIC can share IO2
  7983.  1    NIC can share IO1
  7984.  0    MLID is currently shut down
  7985.  
  7986. Format of MLID Statistics Table:
  7987. Offset    Size    Description    (Table 2172)
  7988.  00h    BYTE    driver statistics table major version
  7989.  01h    BYTE    driver statistics table minor version (decimal, 0-99)
  7990.  02h    WORD    number of generic counters (typically 13)
  7991.  04h    DWORD    "ValidCountersMask" (bit mask, bit 31 is TotalTxCount)
  7992.  08h    DWORD    TotalTxCount
  7993.  0Ch    DWORD    TotalRxCount
  7994.  10h    DWORD    NoECBAvailableCount
  7995.  14h    DWORD    TxTooBigCount
  7996.  18h    DWORD    TxTooSmallCount
  7997.  1Ch    DWORD    RxOverflowCount
  7998.  20h    DWORD    RxTooBigCount
  7999.  24h    DWORD    RxTooSmallCount
  8000.  28h    DWORD    TxMiscCount
  8001.  2Ch    DWORD    RxMiscCount
  8002.  30h    DWORD    TxRetryCount
  8003.  34h    DWORD    RxChecksumErrorCount
  8004.  38h    DWORD    RxMismatchCount
  8005.  3Ch    WORD    number of custom counters
  8006.  3Eh  N DWORDs    custom counters
  8007.       N DWORDs    -> CustomCounterStrN (one per custom counter)
  8008.     var    length-prepended and NULL terminated string for Counter 0
  8009.     ...
  8010.     var    length-prepended and NULL terminated string for Counter N-1
  8011. SeeAlso: #2165,#2166
  8012.  
  8013. Format of bound stack info structure:
  8014. Offset    Size    Description    (Table 2173)
  8015.  00h    DWORD    -> protocol stack's short name (counted, NUL-terminated)
  8016.  04h    DWORD    -> receive handler
  8017.  08h    DWORD    -> control handler
  8018.  
  8019. Format of stack info structure:
  8020. Offset    Size    Description    (Table 2174)
  8021.  00h    DWORD    -> receive handler
  8022.  04h    DWORD    -> control handler
  8023.  
  8024. Format of General Service Control Block:
  8025. Offset    Size    Description    (Table 2175)
  8026.  00h    DWORD    -> next GSCB (maintained internally by LSL)
  8027.  04h    DWORD    -> entry point for general service handler
  8028.  08h    WORD    command code for this general service (8000h-FFFFh)
  8029. Note:    the control block must not be altered or deallocated until the general
  8030.       service is removed
  8031.  
  8032. Format of Lookahead structure:
  8033. Offset    Size    Description    (Table 2176)
  8034.  00h    DWORD    -> Media header
  8035.  04h    DWORD    -> lookahead buffer
  8036.  08h    WORD    length of lookahead buffer
  8037.  0Ah  6 BYTEs    protocol ID
  8038.  10h    WORD    logical board number
  8039.  12h    WORD    lookahead size
  8040.  
  8041. Format of ODI ECB:
  8042. Offset    Size    Description    (Table 2177)
  8043.  00h    DWORD    link to next ECB
  8044.  04h    DWORD    link to previous ECB
  8045.  08h    WORD    general status
  8046.         0000h received successfully
  8047.         8006h packet overflow
  8048.         8007h reception aborted (data not valid)
  8049.  0Ah    DWORD    -> event service routine or RETF (never 0000h:0000h)(see #2178)
  8050.  0Eh    WORD    protocol stack identifier
  8051.  10h  6 BYTEs    protocol ID (sending only)
  8052.  16h    WORD    MLID board number (sending only)
  8053.  18h  6 BYTEs    MAC destination address
  8054.  1Eh  4 BYTEs    driver workspace
  8055.  22h  4 BYTEs    protocol workspace
  8056.  26h    WORD    total length of sent buffer
  8057.  28h    WORD    fragment count
  8058.  2Ah  2 WORDs    segment,offset of first fragment buffer
  8059.  2Eh    WORD    length of first fragment buffer
  8060.     ...
  8061. SeeAlso: #2163
  8062.  
  8063. (Table 2178)
  8064. Values event service routine is called with:
  8065.     ES:SI -> associated ODI ECB (see #2177)
  8066.     interrupts disabled
  8067. Return: DS,BP,SS,SP preserved
  8068.     interrupt disabled
  8069. Notes:    the service routine may invoke any IPX/ODI function except CloseSocket
  8070.     it is safe to send a packet and wait for completion if enough stack
  8071.       space is available
  8072. --------N-2FC000-----------------------------
  8073. INT 2F - Novell NetWare Event Service Layer (NESL) 1.0 - INSTALLATION CHECK
  8074.     AX = C000h
  8075. Return: AL = FFh if installed
  8076.         DX:BX -> FAR entry point (see #2179,#2180,#2181,#2182,#2183,#2184)
  8077.         ES:SI -> signature string "NESL_EVENTS"
  8078. Program: NESL is a generic interface for event handling in ODI drivers and
  8079.       other NetWare-oriented modules.  Primarily intended to support
  8080.       power management and "hot swapping" of PCMCIA cards, but it is not
  8081.       limited to this.
  8082. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  8083. SeeAlso: AX=C000h"Link Support Layer",AX=C000h"NETWARN"
  8084.  
  8085. (Table 2179)
  8086. Call NESL function GetNESLConfigPointer with:
  8087.     BX = 0000h
  8088. Return: AX = completion code (0000h,8008h) (see #2185)
  8089.     ES:SI -> NESL configuration table if successful (see #2186)
  8090.     BP,DS,STACK preserved
  8091. Desc:    Obtain a pointer to the NESL Configuration Table
  8092. SeeAlso: #2180,#2183
  8093.  
  8094. (Table 2180)
  8095. Call NESL function RegisterEventProducer with:
  8096.     BX = 0001h
  8097.     ES:SI -> Producer Event Control Block (PECB) (see #2187)
  8098. Return: AX = completion code (0000h, 8005h, 8008h) (see #2185)
  8099.     ES:SI -> still points to PECB
  8100.     BP,DS,STACK preserved
  8101. Desc:    Allows a module to register as a producer of a given event class
  8102. Note:    PECB_ClassName and PECB_Flags must be filled in on entry
  8103. SeeAlso: #2053,#2181,#2182,#2183
  8104.  
  8105. (Table 2181)
  8106. Call NESL function DeRegisterEventProducer with:
  8107.     BX = 0002h
  8108.     ES:SI -> PECB previously passed to RegisterEventProducer (see #2187)
  8109. Return: AX = completion code (0000h, 8002h, 8008h) (see #2185)
  8110.     ES:SI -> still points to PECB
  8111.     BP,DS,STACK preserved
  8112. Desc:    Allows a module to de-register as a producer of a given event class
  8113. SeeAlso: #2180,#2184
  8114.  
  8115. (Table 2182)
  8116. Call NESL function EventNotification with:
  8117.     BX = 0003h
  8118.     ES:SI -> PECB previously registered (see #2187)
  8119. Return: AX = completion code (0h, 8005h, 8008h) (see #2185)
  8120.     ES:SI -> still points to PECB
  8121.     BP,DS,STACK preserved
  8122. Desc:    Allows a module to signal that an event has just occurred in a given
  8123.       event class.
  8124. Notes:    Once called, NESL will generate corresponding callouts for this
  8125.       event, as described in Table #2189.
  8126.     on entry, the PECB_DataPtr must point at an Event Parameter Block (EPB)
  8127.       (see #2190) filled in to match the desired event
  8128. SeeAlso: #2180
  8129.  
  8130. (Table 2183)
  8131. Call NESL function RegisterEventConsumer with:
  8132.     BX = 0004h
  8133.     ES:SI -> Consumer Event Control Block (CECB) (see #2188)
  8134. Return: AX = completion code (0h, 8005h, 8008h) (see #2185)
  8135.     ES:SI -> still points to CECB
  8136.     BP,DS,STACK preserved
  8137. Desc:    Allows a module to register as a consumer of a given event class
  8138. Note:    on entry, the CECB_ClassName, CECB_NotifProc and CECB_OSILevel must be
  8139.       filled in.
  8140. SeeAlso: #2180,#2184
  8141.  
  8142. (Table 2184)
  8143. Call NESL function DeRegisterEventConsumer with:
  8144.     BX = 0005h
  8145.     ES:SI -> CECB previously passed to RegisterEventConsumer (see #2188)
  8146. Return: AX = completion code (0h, 8002h, 8008h) (see #2185)
  8147.     ES:SI -> still points to CECB
  8148.     BP,DS,STACK preserved
  8149. Desc:    Allows a module to de-register as a consumer of a given event class
  8150. SeeAlso: #2181,#2183
  8151.  
  8152. (Table 2185)
  8153. Values for NESL Error code:
  8154.  0000h    Successful
  8155.  8002h    Bad Parameter
  8156.  8005h    Fail
  8157.  8008h    Bad Command
  8158.  
  8159. Format of NESL Configuration Table:
  8160. Offset    Size    Description    (Table 2186)
  8161.  00h    WORD    NESL_Cfg_MajVer     Major Version of this table (=1)
  8162.  02h    WORD    NESL_Cfg_MinVer     Minor Version of this table (=0)
  8163.  04h    DWORD    NESL_Cfg_ModLName   -> ASCIZ long name of NESL module
  8164.         (typically -> "NetWare Event Service Layer for 16-Bit DOS")
  8165.  08h    DWORD    NESL_Cfg_ModSName   -> ASCIZ short name of NESL module
  8166.         (typically -> "NESL")
  8167.  0Ch    WORD    NESL_Cfg_ModMajVer  Major Version of NESL itself (=1)
  8168.  0Eh    WORD    NESL_Cfg_ModMinVer  Minor Version of NESL itself (=0)
  8169.  
  8170. Format of NESL Producer Event Control Block (PECB):
  8171. Offset    Size    Description    (Table 2187)
  8172.  00h    WORD    PECB_MajVer  Major Version of this structure (=1)
  8173.  02h    WORD    PECB_MinVer  Minor Version of this structure (=0)
  8174.  04h    DWORD    PECB_NextProducer   -> next PECB.  NULL if last.
  8175.  08h    DWORD    PECB_ClassName        -> ASCIZ string identifying event
  8176.                       class (see #2191)
  8177.  0Ch    DWORD    PECB_ConsumerList   -> list of consumers for this event class
  8178.  10h    DWORD    PECB_DataPtr        -> points to additional data during events
  8179.  14h    DWORD    PECB_Flags
  8180.         Bit 0    =0  consumers should be called "top down" for this
  8181.                 event class.  (OSI level 7 down to OSI level 1)
  8182.             =1  consumers should be called "bottom up"
  8183.         Bits 1-31   Reserved =0
  8184.  18h  8 BYTEs    PECB_Reserved (all zeros)
  8185. Note:    Although the event producer provides the memory for the PECB, the
  8186.       NESL module controls this memory until the event class is
  8187.       de-registered.
  8188.     While owned by NESL, this structure should be treated as read-only,
  8189.       except for the PECB_DataPtr field.
  8190.  
  8191. Format of NESL Consumer Event Control Block (CECB):
  8192. Offset    Size    Description    (Table 2188)
  8193.  00h    WORD    CECB_MajVer  Major Version of this structure (=1)
  8194.  02h    WORD    CECB_MinVer  Minor Version of this structure (=0)
  8195.  04h    DWORD    CECB_NextConsumer   -> next CECB.  NULL if last.
  8196.  08h    DWORD    CECB_ClassName        -> ASCIZ string identifying event
  8197.                       class (see #2191)
  8198.  0Ch    DWORD    CECB_NotifProc        -> FAR CALL event handler (see #2189)
  8199.  10h    WORD    CECB_OSILevel
  8200.         Bits 4-7 = OSI Layer of this module (1 through 7)
  8201.         Bits 0-3 = relative ordering with other modules on same layer
  8202.  13h 14 BYTEs    CECB_Reserved (all zeros)
  8203. Note:    Although the event consumer provides the memory for the CECB, the
  8204.       NESL module controls this memory until the consumer is de-registered.
  8205.     While owned by NESL, this structure should be treated as read-only,
  8206.  
  8207. (Table 2189)
  8208. Values NESL Consumer Notification Procedure is called with:
  8209.     ES:SI -> Event Parameter Block (EPB) (see #2190)
  8210. Return: AX = completion code (0000h, 8005h) (see #2185)
  8211.     ES:SI -> still points to EPB
  8212. Desc:    Called by NESL to notify the consumer when an event has occurred in
  8213.       an event class for which it has registered.
  8214. SeeAlso: #2188
  8215.  
  8216. Format of NESL Event Parameter Block (EPB):
  8217. Offset    Size    Description    (Table 2190)
  8218.  00h    WORD    EPB_MajVer  Major Version of this structure (=1)
  8219.  02h    WORD    EPB_MinVer  Minor Version of this structure (=0)
  8220.  04h    DWORD    EPB_ClassName  -> ASCIZ string identifying event class
  8221.                   (see #2191)
  8222.  08h    DWORD    EPB_EventName  -> ASCIZ string identifying event within
  8223.                   class (see #2192)
  8224.  0Ch    DWORD    EPB_ModuleName -> ASCIZ string identifying module
  8225.                   producing event
  8226.  10h    DWORD    EPB_DataPtr0   -> event-defined data or NULL if not used
  8227.  14h    DWORD    EPB_DataPtr1   -> event-defined data or NULL if not used
  8228.  18h  8 BYTEs    EPB_Reserved (all zeros)
  8229.  
  8230. (Table 2191)
  8231. Values for NESL Event Class Names:
  8232.  Event Class        Description
  8233.  -------------------    -----------------------------------------
  8234.  Service Suspend    Suspension of a service.  Called top-down.
  8235.  Service Resume        Resumption/availability of a service. Called bottom-up.
  8236.  Service/Status Change    Change in status or level of service.  Called top-down.
  8237.  Suspend Request    Request to suspend a service.  Called bottom-up.
  8238. Note:    Contact Novell Labs to register new event classes.
  8239.  
  8240. (Table 2192)
  8241. Values for NESL Event Names:
  8242.  Event Name            Class            Description
  8243.  --------------------------    -------------        ---------------------------
  8244.  MLID Cable Disconnect        Service Suspend        Cable disconnected from NIC
  8245.  MLID Card Removal        Service Suspend        PCMCIA card removed
  8246.  MLID Hardware Failure        Service Suspend        Serious hardware
  8247.                               failure in NIC
  8248.  MLID Not In Range        Service Suspend        Wireless access point
  8249.                               is out of range
  8250.  MLID Shutdown            Service Suspend        MLID was shut down
  8251.  MLID Media Access Denied    Service Suspend        Access to physical
  8252.                               medium unsuccessful
  8253.  MLID Cable Reconnect        Service Resume        Cable re-connected to NIC
  8254.  MLID Card Insertion Complete    Service Resume        PCMCIA card inserted
  8255.  MLID In Range            Service Resume        Wireless access point
  8256.                               in range
  8257.  MLID Reset            Service Resume        MLID was just reset
  8258.  MLID Access Point Change    Serv/Status Change  Station has moved to
  8259.                               new access point
  8260.  MLID Speed Change        Serv/Status Change  Change in communic. speed
  8261. Note:    Contact Novell Labs to register new event names.
  8262.     For all predefined events above, EPB_DataPtr0 (see #2190) points
  8263.       to the MLID Configuration table (see AX=C000h"ODI") for the
  8264.       affected MLID.
  8265. --------N-2FC000-----------------------------
  8266. INT 2F - Novell NetWare Connect NETWARN - INSTALLATION CHECK
  8267.     AX = C000h
  8268. Return: AL = FFh if installed
  8269.         SI = segment of resident portion
  8270. Program: NETWARN is a utility supplied with NetWare Connect to warn a
  8271.       remote dialup user when programs are about to be loaded slowly over
  8272.       the modem link.
  8273. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  8274. Note:    on return, verify that it is NETWARN responding by examining signature
  8275.       at in NETWARN's data table in the resident segment (see #2193)
  8276. SeeAlso: AX=C000h"ODI",AX=C000h"NESL"
  8277.  
  8278. Format of NETWARN Configuration structure:
  8279. Offset    Size    Description    (Table 2193)
  8280.  103h 7 BYTEs    signature string "NETWARN"
  8281.  10Ah    BYTE    major version in ASCII (="1")
  8282.  10Bh    BYTE    minor version in ASCII (="0")
  8283.  10Ch    DWORD    minimum size of EXE cared about in bytes (/S=xxxx)
  8284.  110h    WORD    same value in kilobytes (see 0113h, bit 4 below)
  8285.  112h    BYTE    multiplex code (AH value) actually being used
  8286.  113h    WORD    options (see #2194)
  8287.  115h    DWORD    INT 21h vector before NETWARN loaded
  8288.  119h    DWORD    INT 2Fh vector before NETWARN loaded
  8289.  11Dh 16 BYTEs    ASCIIZ local name of last device which was checked
  8290.  12Dh 128 BYTEs ASCIIZ remote name of last device which was checked
  8291. Note:    the specified offsets are from the start of the resident segment
  8292.  
  8293. Bitfields for NETWARN options:
  8294. Bit(s)    Description    (Table 2194)
  8295.  0    ??? (=0)
  8296.  1    /U (Unload) selected (never in resident)
  8297.  2    /E (Enabled) Will trap & check EXEC's
  8298.  3    /D (Disabled) No EXEC checking done
  8299.  4    /S (Size) was set (see 010Ch, 0110h above)
  8300.  5    /P (Path shown)
  8301.  6    /H or /? (Help) (never in resident)
  8302. SeeAlso: #2193
  8303. --------f-2FC000-----------------------------
  8304. INT 2F - FN32 32 character filename utilities - INSTALLATION CHECK
  8305.     AX = C000h
  8306. Return: AL = FFh if installed
  8307.        ES:DI -> signature string "FN32 32CHAR TSR"
  8308. Program: FN32 is a TSR which supports 32 character filenames under PC/MS-DOS
  8309. Note:    the TSR intercepts INT 21 calls and performs filename substitution by
  8310.       managing dictionary files in each directory which contains long
  8311.       filenames
  8312. --------M-2FC000-----------------------------
  8313. INT 2F - QMR - INSTALLATION CHECK
  8314.     AX = C000h
  8315. Return: AL = FFh if installed
  8316.         ES:DI -> signature string "QMR1!"
  8317. Program: QMR (Cove Software, Quick Mouse Reset) monitors the mouse
  8318.       service interrupt (int 33h) and substitutes a fast software
  8319.       reset (mouse fn 21h) for the slow hardware reset (mouse fn 0).
  8320. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  8321. SeeAlso: AX=C001h"QMR",AX=C002h"QMR",AX=C003h"QMR"
  8322. --------V-2FC000-----------------------------
  8323. INT 2F - VGAsave v1.93 - INSTALLATION CHECK
  8324.     AX = C000h
  8325. Return: AL = FFh if installed
  8326.         BX = segment of resident code
  8327. Program: VGAsave is a freeware VGA-specific, mouse-aware screenblanker by Bill
  8328.       Javurek
  8329. Range:    AH=C0h to AH=FFh, selected by scanning for a free multiplex number
  8330. Note:    the transient portion of VGAsave compares the first 38 bytes of the
  8331.       resident code (addressed through BX) against its own copy of the
  8332.       resident code to complete the installation check
  8333. SeeAlso: INT 14/AX=AA01h,INT 2F/AH=93h
  8334. Index:    screen saver;VGAsave
  8335. --------V-2FC000-----------------------------
  8336. INT 2F - AD-DOS - INSTALLATION CHECK
  8337.     AX = C000h
  8338. Return: AL = FFh if installed
  8339.         BX = 4144h ('AD')
  8340.         CX = 2D44h ('-D')
  8341.         DX = 4F53h ('OS')
  8342. Program: AD-DOS is the DOS version of the After Dark screen blanker for
  8343.       MS Windows
  8344. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  8345. SeeAlso: AX=C001h,AX=C003h,AX=C005h,AX=C007h,AX=C009h,AX=C020h,INT 14/AX=AA01h
  8346. Index:    screen saver;AD-DOS
  8347. --------U-2FC000-----------------------------
  8348. INT 2F U - WANG_ER.COM - INSTALLATION CHECK
  8349.     AX = C000h
  8350. Return: AL = FFh if installed
  8351.         ES = segment of resident code
  8352. Program: WANG_ER is a TSR from Compaq which permits Compaq systems equipped
  8353.       with 3-mode floppy drives to read Wang document diskettes
  8354. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  8355. Note:    The installation check is completed by comparing the resident code
  8356.       with the copy in the transient program
  8357. --------i-2FC000-----------------------------
  8358. INT 2F O - ASPIHOOK.SYS - INSTALLATION CHECK
  8359.     AX = C000h
  8360. Return: AL = FFh if multiplex number in use
  8361.         ES:DI -> ASCIZ signature "ASPIHOOK" if ASPIHOOK.SYS installed
  8362. Program: ASPIHOOK is a device driver for monitoring SCSI activity through an
  8363.       ASPI host manager; it is part of the Personal Measure system
  8364.       activity monitor from Spirit of Performance, Inc.
  8365. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  8366. SeeAlso: AX=C000h"PMEASURE"
  8367. --------i-2FC000-----------------------------
  8368. INT 2F - PMEASURE.EXE - INSTALLATION CHECK
  8369.     AX = C000h
  8370. Return: AL = FFh if multiplex number in use
  8371.         ES:DI -> ASCIZ signature "PMEASURE.EXE" if PMEASURE.EXE installed
  8372. Program: PMEASURE.EXE is a TSR for monitoring system hardware activity which
  8373.       is part of the Personal Measure system activity monitor from Spirit
  8374.       of Performance, Inc.
  8375. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  8376. Note:    If a Personal Measure Hook Module, such as ASPIHOOK.SYS, is already
  8377.       installed, PMEASURE.EXE uses the next highest free multiplex number.
  8378. SeeAlso: AX=C000h"ASPIHOOK",AX=C000h"PERSONAL MEASURE"
  8379. --------i-2FC000-----------------------------
  8380. INT 2F - PERSONAL MEASURE - HOOK MODULE INSTALLATION CHECK
  8381.     AX = C000h
  8382. Return: AL = FFh if installed
  8383.     ES:DI -> signature string "PMEASUREHOOK"
  8384.     AX = C000 if not installed, per mux id conventions
  8385.     DH = major release number (binary)
  8386.     DL = minor release number (binary)
  8387. Program: The Personal Measure system activity monitor from Spirit of
  8388.       Performance, Inc. uses an extensible series of modules to hook
  8389.       into various operating system interfaces and monitor system calls.
  8390.       Current hook modules are ASPIHOOK.SYS for ASPI device activity
  8391.       and CDRHOOK.SYS for non-ASPI CD-ROM activity.     All hook modules
  8392.       share the same mux id.
  8393. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  8394. SeeAlso: AX=C000h"PMEASURE.EXE",AX=C001h"PERSONAL MEASURE"
  8395. --------c-2FC000-----------------------------
  8396. INT 2F U - PrintCache v3.1 PCACHE.EXE - INSTALLATION CHECK
  8397.     AX = C000h
  8398. Return: AL = FFh if installed
  8399.         SI = signature value 20D6h
  8400.         DI = signature value 8761h
  8401.         ES:BX -> configuration table (see #2195)
  8402.         CX = ??? (0300h)
  8403.         DX = ??? (0020h)
  8404. Program: PCACHE is the resident print spooler portion of PrintCache by
  8405.       LaserTools; it may use either memory or disk space to spool output
  8406. Range:    AH=C0h to AH=FFh, selected by commandline switch
  8407. SeeAlso: AX=0100h/SI=20D6h,AX=C001h"PCACHE"
  8408.  
  8409. Format of PrintCache configuration table:
  8410. Offset    Size    Description    (Table 2195)
  8411.  00h 26 BYTEs    ASCIZ signature string "TORQ Configuration Table: "
  8412.  1Ah  2 BYTEs    ???
  8413.  1Ch    DWORD    -> data table (see #2196)
  8414.  20h  4 BYTEs    ASCIZ version string ("3.1" for v3.1)
  8415.  24h  5 BYTEs    ???
  8416.  29h 12 BYTEs    ASCIZ version date string ("Aug 31 1993" for v3.1)
  8417.  35h    WORD    buffered port type (01h = LPT, 02h = COM)
  8418.  37h    WORD    buffered port BIOS port number
  8419.  39h  5 BYTEs    ASCIZ buffered port name ("LPTn" or "COMn")
  8420.  3Eh    WORD    physical port type (01h = LPT, 02h = COM)
  8421.  40h    WORD    physical port BIOS port number
  8422.  42h  5 BYTEs    ASCIZ physical port name ("LPTn" or "COMn")
  8423.  47h    BYTE    port driver IRQ
  8424.  48h 21 BYTEs    ???
  8425.  5Dh    WORD    buffer size in K
  8426.  5Fh 27 BYTEs    ???
  8427.  7Ah    BYTE    popup hotkey shift states (see #0465 at INT 16/AH=02h)
  8428.  7Bh    BYTE    popup hotkey scan code (see #0005 at INT 09h"IRQ1")
  8429.  7Ch  4 BYTEs    ???
  8430.  80h 20 BYTEs    ASCIZ printer type name
  8431.     ???
  8432.  
  8433. Format of PrintCache data table:
  8434. Offset    Size    Description    (Table 2196)
  8435.  00h  2 BYTEs    ???
  8436.  02h    DWORD    -> ??? entry point
  8437.     ???
  8438. --------U-2FC000-----------------------------
  8439. INT 2F - Frank Kintrup TSR Utilities - INSTALLATION CHECK
  8440.     AX = C000h
  8441. Return: AL = FFh if installed
  8442.         BX = program ID (see #2197)
  8443.         CX = 464Bh (signature "FK")
  8444.         DX = revision number (DH = major, DL = minor)
  8445.         ES = resident segment of TSR
  8446. Range:    AH=C0h to AH=FFh, selected by searching for a free multiplex number
  8447. SeeAlso: AX=C001h"Kintrup",AX=C002h"Kintrup"
  8448.  
  8449. (Table 2197)
  8450. Values for Frank Kintrup TSR program ID:
  8451.  4153h    "AS"    ASCII.COM    ASCII table with paste function
  8452.  434Ch    "CL"    CLOCK.COM    clock with date/time display and alarm
  8453.  5043h    "PC"    PCALC.COM    programmer's calculator with paste function
  8454.  5343h    "SC"    SCRSAVE.COM    screen saver with mouse support and hotkey
  8455.  5544h    "UD"    UNDEL.COM    undelete program like SMARTCAN or DPROTECT
  8456. --------K-2FC000-----------------------------
  8457. INT 2F U - HP 100LX/200LX - PUSHKEYS - INSTALLATION CHECK
  8458.     AX = C000h
  8459. Return: AL = FFh if possibly installed
  8460. Range:    AH=C0h to AH=FFh, selected by scanning for signature with AL=AEh
  8461. SeeAlso: AX=C001h"HP 100LX",AX=C0AEh"HP 100LX",AX=C0AFh"HP 100LX"
  8462. --------V-2FC000-----------------------------
  8463. INT 2F - DIMWIT - INSTALLATION CHECK
  8464.     AX = C000h
  8465. Return: AL = FFh if installed
  8466.         ES:DI -> signature string "DIMDOS" or "DIMWIN"
  8467. Program: DIMWIT is a freeware Windows-aware screen blanker by Larry Board
  8468. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  8469. SeeAlso: AX=C000h"AD-DOS",AX=C001h"DIMWIT"
  8470. Index:    screen saver;DIMWIT
  8471. --------F-2FC000BX444B-----------------------
  8472. INT 2F - MTEZ XpressFax Hardware TSR (CLASS2) - INSTALLATION CHECK
  8473.     AX = C000h
  8474.     BX = 444Bh ('DK')
  8475.     CX = 4A4Eh ('AN')
  8476. Return: AL = status
  8477.         00h not installed, OK to install
  8478.         FFh installed
  8479.         BX = 646Bh ('dk')
  8480.         CX = 6A6Eh ('an')
  8481. Range:    AH=C0h to AH=FFh, selected automatically
  8482. SeeAlso: AH=C0h"MTEZ"
  8483. --------V-2FC000-----------------------------
  8484. INT 2F U - TSENGP.COM - INSTALLATION CHECK
  8485.     AX = C000h
  8486. Return: AL = status
  8487.         00h not installed, OK to install
  8488.         FFh installed
  8489.         DS = segment of resident code
  8490. Program: TSENGP.COM is a TSR supplied by Compaq to fix an incompatibility
  8491.       between some applications and Tseng ET4000-based video adapters
  8492. Range:    AH=C0h to AH=FFh, selected automatically
  8493. Note:    the installation check is completed by comparing the first eleven
  8494.       bytes at DS:005Fh against the TSR's code (80h FCh 06h 74h 0Ah
  8495.       80h FCh 07h 74h 05h EAh)
  8496. --------N-2FC000-----------------------------
  8497. INT 2F U - LapLink RemoteAccess (LLRA) - INSTALLATION CHECK
  8498.     AX = C000h
  8499. Return: AL = FFh if one of the components is installed
  8500.     CX:BX -> signature within LLRA component:
  8501.         "TSI_LapLinkCore" for LLRA1.EXE
  8502.         "TSI_Blackbird"   for LLRA2.EXE
  8503.         "TSI_Redirector"  for LLRA3.EXE
  8504.         "TSI_Compression" for LLRA4.EXE
  8505.     DL = major version number
  8506.     DH = minor version number
  8507. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  8508. Note:    LapLink components are installed in the order listed above, but not
  8509.       necessarily all four; each gets its own multiplex number (default
  8510.       C0h-C3h)
  8511. SeeAlso: AX=C002h"LapLink",AX=C205h"LapLink",AX=C2F0h"LapLink"
  8512. SeeAlso: AX=C2F1h"LapLink",AX=C301h"LapLink",AX=C3F0h"LapLink"
  8513. SeeAlso: AX=C3F1h"LapLink"
  8514. --------M-2FC001-----------------------------
  8515. INT 2F - QMR - REQUEST HARDWARE RESET
  8516.     AX = C001h
  8517. Return: ES = QMR code segment
  8518.     AL destroyed
  8519. Desc:    this function is used to force a full mouse reset when QMR is installed
  8520. SeeAlso: AX=C000h"QMR",AX=C002h"QMR"
  8521. --------V-2FC001-----------------------------
  8522. INT 2F - DIMWIT - GET CONFIGURATION DATA
  8523.     AX = C001h
  8524. Return: ES:DI -> TSR configuration data (see #2198)
  8525. Program: DIMWIT is a freeware Windows-aware screen blanker by Larry Board
  8526. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  8527. SeeAlso: AX=C000h"DIMWIT",AX=C001h"AD-DOS"
  8528. Index:    screen saver;DIMWIT
  8529.  
  8530. Format of DIMWIT TSR configuration data:
  8531. Offset    Size    Description    (Table 2198)
  8532.  00h    WORD    blanking delay in clock ticks
  8533.  02h    BYTE    instant-blanking hotkey scan code (see #0005)
  8534.         Ctrl and Alt must also be pressed
  8535. --------V-2FC001ES0000-----------------------
  8536. INT 2F - AD-DOS - GET RESIDENT CODE SEGMENT
  8537.     AX = C001h
  8538.     ES = 0000h
  8539. Return: AL = 00h if successful
  8540.         ES = AD-DOS TSR Code Segment
  8541. SeeAlso: AX=C000h"AD-DOS",AX=C001h"DIMWIT"
  8542. Index:    screen saver;AD-DOS
  8543. --------c-2FC001-----------------------------
  8544. INT 2F U - PrintCache v3.1 PCACHE.EXE - GET ENTRY POINTS
  8545.     AX = C001h
  8546. Return: AL = FFh if installed
  8547.         ES:BX -> ???
  8548.         ES:DX -> ???
  8549.         ES:SI -> ???
  8550.         ES:DI -> ??? (equivalent to AX=C002h)
  8551. SeeAlso: AX=C000h"PCACHE",AX=C002h"PCACHE"
  8552. --------U-2FC001-----------------------------
  8553. INT 2F - Frank Kintrup TSR Utilities - CLOCK - DISABLE DISPLAY UPDATE
  8554.     AX = C001h
  8555. Range:    AH=C0h to AH=FFh, selected by searching for a free multiplex number
  8556. SeeAlso: AX=C000h"Kintrup",AX=C002h"Kintrup"
  8557. --------K-2FC001CX03FB-----------------------
  8558. INT 2F U - HP 100LX/200LX - PUSHKEYS - INTERNAL - UNINSTALL
  8559.     AX = C001h
  8560.     CX = 03FBh return address to continue uninstall if possible
  8561. Return: program uninstalled
  8562. Range:    AH=C0h to AH=FFh, selected by scanning for signature with AL=AEh
  8563. SeeAlso: AX=C000h"HP 100LX",AX=C0AEh"HP 100LX",AX=C0AFh"HP 100LX"
  8564. --------i-2FC001-----------------------------
  8565. INT 2F - PERSONAL MEASURE - PASS PARAMETERS TO HOOK MODULE(S)
  8566.     AX = C001h
  8567.     DX = segment of PMEASURE.EXE or 0000h
  8568.     BX = offset in PMEASURE.EXE or 0000h
  8569.     CX = offset in PMEASURE.EXE or 0000h
  8570. Return: None
  8571. Program: PMEASURE.EXE is a TSR for monitoring system hardware activity which
  8572.       is part of the Personal Measure system activity monitor from Spirit
  8573.       of Performance, Inc.    PMEASURE uses this call to inform its hook
  8574.       modules whether or not it is running and to pass information about
  8575.       shared data and procedures.
  8576. Warning: This information documents a function that is private to Personal
  8577.       Measure and is provided as information only.    It should NOT be called
  8578.       by any software other than Personal Measure.
  8579. SeeAlso: AX=C000h"PERSONAL MEASURE HOOK MODULE"
  8580. --------V-2FC002-----------------------------
  8581. INT 2F - AD-DOS - CHECK FOR NEW INPUT
  8582.     AX = C002h
  8583. Return: AL = 00h if successful
  8584.         BX = status
  8585.         0000h no input since last check
  8586.         0001h new input available
  8587. Note:    this call also resets the new-input flag
  8588. SeeAlso: AX=C000h"AD-DOS",AX=C004h
  8589. Index:    screen saver;AD-DOS
  8590. --------M-2FC002-----------------------------
  8591. INT 2F - QMR - DISABLE QMR
  8592.     AX = C002h
  8593. Return: ES = QMR code segment
  8594.     AL destroyed
  8595. Desc:    this call temporarily disables QMR
  8596. SeeAlso: AX=C000h"QMR",AX=C003h"QMR"
  8597. --------c-2FC002-----------------------------
  8598. INT 2F U - PrintCache v3.1 PCACHE.EXE - GET BUFFER SIZE
  8599.     AX = C002h
  8600. Return: AX = ??? in K
  8601.     BX = size of print buffer in K
  8602. Program: PCACHE is the resident print spooler portion of PrintCache by
  8603.       LaserTools; it may use either memory or disk space to spool output
  8604. SeeAlso: AX=C000h"PCACHE"
  8605. --------U-2FC002-----------------------------
  8606. INT 2F - Frank Kintrup TSR Utilities - CLOCK - ENABLE DISPLAY UPDATE
  8607.     AX = C002h
  8608. Range:    AH=C0h to AH=FFh, selected by searching for a free multiplex number
  8609. SeeAlso: AX=C000h"Kintrup",AX=C002h"Kintrup"
  8610. --------N-2FC002-----------------------------
  8611. INT 2F U - LapLink RemoteAccess (LLRA) - Core - ???
  8612.     AX = C002h
  8613.     details not yet available
  8614. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  8615. SeeAlso: AX=C000h"LapLink",AX=C002h"LapLink",AX=C2F0h"LapLink"
  8616. SeeAlso: AX=C2F1h"LapLink",AX=C301h"LapLink"
  8617. --------V-2FC003-----------------------------
  8618. INT 2F - AD-DOS - SET MINUTES TO WAIT
  8619.     AX = C003h
  8620.     BX = minutes to wait before blanking screen
  8621. Return: AL = 00h if successful
  8622. Program: AD-DOS is the DOS version of the After Dark screen blanker for
  8623.       MS Windows
  8624. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  8625. Note:    this call also resets the delay timer
  8626. SeeAlso: AX=C000h"AD-DOS",AX=C004h
  8627. Index:    screen saver;AD-DOS
  8628. --------M-2FC003-----------------------------
  8629. INT 2F - QMR - ENABLE QMR
  8630.     AX = C003h
  8631. Return: ES = QMR code segment
  8632.     AL destroyed
  8633. Desc:    this call enables QMR after it has been disabled
  8634. SeeAlso: AX=C000h"QMR",AX=C002h"QMR"
  8635. --------c-2FC003-----------------------------
  8636. INT 2F U - PrintCache v3.1 PCACHE.EXE - SET ??? FLAG
  8637.     AX = C003h
  8638. Return: BX destroyed
  8639. SeeAlso: AX=C004h"PCACHE"
  8640. --------V-2FC004-----------------------------
  8641. INT 2F - AD-DOS - GET MINUTES TO WAIT
  8642.     AX = C004h
  8643. Return: AL = 00h if successful
  8644.         BX = minutes to wait before blanking screen
  8645. SeeAlso: AX=C000h"AD-DOS",AX=C003h"AD-DOS"
  8646. Index:    screen saver;AD-DOS
  8647. --------c-2FC004-----------------------------
  8648. INT 2F U - PrintCache v3.1 PCACHE.EXE - CLEAR ??? FLAG
  8649.     AX = C004h
  8650. Return: BX destroyed
  8651. SeeAlso: AX=C003h"PCACHE"
  8652. --------V-2FC005-----------------------------
  8653. INT 2F - AD-DOS - SET BLANKER STATUS
  8654.     AX = C005h
  8655.     BX = new state (0000h inactive, 0001h active) (default 0001h)
  8656. Return: AL = 00h if successful
  8657. SeeAlso: AX=C006h"AD-DOS"
  8658. Index:    screen saver;AD-DOS
  8659. --------c-2FC005-----------------------------
  8660. INT 2F U - PrintCache v3.1 PCACHE.EXE - ???
  8661.     AX = C005h
  8662.     ???
  8663. Return: BX destroyed
  8664.     ???
  8665. Program: PCACHE is the resident print spooler portion of PrintCache by
  8666.       LaserTools; it may use either memory or disk space to spool output
  8667. Range:    AH=C0h to AH=FFh, selected by commandline switch
  8668. SeeAlso: AX=C000h"PCACHE"
  8669. --------V-2FC006-----------------------------
  8670. INT 2F - AD-DOS - GET BLANKER STATUS
  8671.     AX = C006h
  8672. Return: AL = 00h if successful
  8673.         BX = current state of screen blanker (0000h inactive, 0001h active)
  8674. Program: AD-DOS is the DOS version of the After Dark screen blanker for
  8675.       MS Windows
  8676. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  8677. SeeAlso: AX=C000h"AD-DOS",AX=C005h"AD-DOS"
  8678. Index:    screen saver;AD-DOS
  8679. --------c-2FC006-----------------------------
  8680. INT 2F U - PrintCache v3.1 PCACHE.EXE - ???
  8681.     AX = C006h
  8682.     ???
  8683. Return: BX destroyed
  8684.     ???
  8685. Note:    this function appears to be identical to AX=C007h
  8686. SeeAlso: AX=C000h"PCACHE",AX=C007h"PCACHE"
  8687. --------V-2FC007-----------------------------
  8688. INT 2F - AD-DOS - SET HOT KEY
  8689.     AX = C007h
  8690.     BX = hot key
  8691.     CL = hot key shift status
  8692. Return: AL = 00h if successful
  8693. SeeAlso: AX=C008h"AD-DOS"
  8694. Index:    screen saver;AD-DOS
  8695. --------c-2FC007-----------------------------
  8696. INT 2F U - PrintCache v3.1 PCACHE.EXE - ???
  8697.     AX = C007h
  8698.     ???
  8699. Return: BX destroyed
  8700.     ???
  8701. Note:    this function appears to be identical to AX=C006h
  8702. SeeAlso: AX=C000h"PCACHE",AX=C006h"PCACHE"
  8703. --------V-2FC008-----------------------------
  8704. INT 2F - AD-DOS - GET CURRENT HOT KEY
  8705.     AX = C008h
  8706. Return: AX = status
  8707.         0000h successful
  8708.         BX = Hot Key
  8709.         CL = Hot Key Shift Status
  8710.         0008h otherwise
  8711. SeeAlso: AX=C000h"AD-DOS",AX=C007h"AD-DOS"
  8712. Index:    screen saver;AD-DOS
  8713. --------c-2FC008-----------------------------
  8714. INT 2F U - PrintCache v3.1 PCACHE.EXE - CLEAR ??? FLAG
  8715.     AX = C008h
  8716. Return: BX destroyed
  8717. SeeAlso: AX=C000h"PCACHE",AX=C009h"PCACHE"
  8718. --------V-2FC009-----------------------------
  8719. INT 2F - AD-DOS - UNBLANK MONITOR
  8720.     AX = C009h
  8721. Return: AL = 00h if successful
  8722. Program: AD-DOS is the DOS version of the After Dark screen blanker for
  8723.       MS Windows
  8724. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  8725. Note:    this function works by simulating keyboard activity
  8726. Index:    screen saver;AD-DOS
  8727. --------c-2FC009-----------------------------
  8728. INT 2F U - PrintCache v3.1 PCACHE.EXE - SET ??? FLAG
  8729.     AX = C009h
  8730. Return: BX destroyed
  8731. Program: PCACHE is the resident print spooler portion of PrintCache by
  8732.       LaserTools; it may use either memory or disk space to spool output
  8733. Range:    AH=C0h to AH=FFh, selected by commandline switch
  8734. SeeAlso: AX=C000h"PCACHE",AX=C008h"PCACHE"
  8735. --------V-2FC00A-----------------------------
  8736. INT 2F - AD-DOS - ???
  8737.     AX = C00Ah
  8738. Return: AX = status
  8739.         0000h successful
  8740.         BH = ??
  8741.         BL = ??
  8742.         000Ah failed
  8743. Index:    screen saver;AD-DOS
  8744. --------c-2FC00A-----------------------------
  8745. INT 2F U - PrintCache v3.1 PCACHE.EXE - ???
  8746.     AX = C00Ah
  8747.     ???
  8748. Return: AH = bit flags
  8749.         bit 5: ???
  8750.     AL = bit flags
  8751.         bit 4: ???
  8752.         bit 3: ???
  8753.     BX destroyed
  8754.     ???
  8755. SeeAlso: AX=C000h"PCACHE"
  8756. --------V-2FC00B-----------------------------
  8757. INT 2F - AD-DOS - ???
  8758.     AX = C00Bh
  8759. Return: AX = status
  8760.         0000h successful
  8761.         000Bh failed
  8762. Index:    screen saver;AD-DOS
  8763. --------c-2FC00B-----------------------------
  8764. INT 2F U - PrintCache v3.1 PCACHE.EXE - NOP
  8765.     AX = C00Bh
  8766. Return: BX destroyed
  8767. SeeAlso: AX=C000h"PCACHE"
  8768. --------V-2FC00C-----------------------------
  8769. INT 2F - AD-DOS - SET ??? INTERNAL FLAG TO 01h
  8770.     AX = C00Ch
  8771. Return: AX = status
  8772.         0000h successful
  8773.         000Ch failed
  8774. Program: AD-DOS is the DOS version of the After Dark screen blanker for
  8775.       MS Windows
  8776. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  8777. Index:    screen saver;AD-DOS
  8778. --------c-2FC00C-----------------------------
  8779. INT 2F U - PrintCache v3.1 PCACHE.EXE - GET ???
  8780.     AX = C00Ch
  8781. Return: AX = ??? (0000h)
  8782.     BX = ??? (0000h)
  8783.     CX = ??? (0100h)
  8784.     DL = ???
  8785.     DH = ???
  8786. SeeAlso: AX=C000h"PCACHE"
  8787. --------c-2FC00D-----------------------------
  8788. INT 2F U - PrintCache v3.1 PCACHE.EXE - SET ???
  8789.     AX = C00Dh
  8790.     DL = ???
  8791. Return: BX destroyed
  8792. Program: PCACHE is the resident print spooler portion of PrintCache by
  8793.       LaserTools; it may use either memory or disk space to spool output
  8794. Range:    AH=C0h to AH=FFh, selected by commandline switch
  8795. SeeAlso: AX=C000h"PCACHE"
  8796. --------V-2FC00E-----------------------------
  8797. INT 2F - AD-DOS - SET PASSWORD STATUS
  8798.     AX = C00Eh
  8799.     BX = new state (0000h disabled, 0001h enabled)
  8800. Return: ???
  8801. SeeAlso: AX=C000h"AD-DOS",AX=C00Fh"AD-DOS"
  8802. Index:    screen saver;AD-DOS
  8803. --------c-2FC00E-----------------------------
  8804. INT 2F U - PrintCache v3.1 PCACHE.EXE - INSTALL ???
  8805.     AX = C00Eh
  8806.     ES:DX -> ???
  8807. Return: BX destroyed
  8808. Note:    ES:DX is stored internally if the variable is currently 0000h:0000h,
  8809.       but ignored if already set; a counter is incremented
  8810. SeeAlso: AX=C000h"PCACHE",AX=C00Fh"PCACHE"
  8811. --------V-2FC00F-----------------------------
  8812. INT 2F - AD-DOS - GET PASSWORD STATUS
  8813.     AX = C00Fh
  8814. Return: BX = current state (0000h disabled, 0001h enabled)
  8815. SeeAlso: AX=C00Eh"AD-DOS"
  8816. Index:    screen saver;AD-DOS
  8817. --------c-2FC00F-----------------------------
  8818. INT 2F U - PrintCache v3.1 PCACHE.EXE - REMOVE ???
  8819.     AX = C00Fh
  8820. Return: BX destroyed
  8821. Note:    this function decrements the counter used by AX=C00Eh, and clears the
  8822.       internal pointer variable to 0000h:0000h when it reaches zero
  8823. SeeAlso: AX=C000h"PCACHE",AX=C00Eh"PCACHE"
  8824. --------c-2FC010-----------------------------
  8825. INT 2F U - PrintCache v3.1 PCACHE.EXE - GET ???
  8826.     AX = C010h
  8827.     CX = index of ??? table (00h-02h, others treated as 00h)
  8828.     SI = offset into data table
  8829. Return:    AL = byte at specified offset into table
  8830.     BX destroyed
  8831. SeeAlso: AX=C000h"PCACHE"
  8832. --------c-2FC011-----------------------------
  8833. INT 2F U - PrintCache v3.1 PCACHE.EXE - GET ???
  8834.     AX = C011h
  8835. Return: AX = ??? (0007h)
  8836.     BX = ??? (0001h)
  8837.     CH = ???
  8838.     CL = ???
  8839. SeeAlso: AX=C000h"PCACHE"
  8840. --------c-2FC012-----------------------------
  8841. INT 2F U - PrintCache v3.1 PCACHE.EXE - GET ???
  8842.     AX = C012h
  8843. Return: AX = ???
  8844.     BX = ???
  8845.     CX = ???
  8846.     DX = ???
  8847. SeeAlso: AX=C000h"PCACHE"
  8848. --------c-2FC013-----------------------------
  8849. INT 2F U - PrintCache v3.1 PCACHE.EXE - ???
  8850.     AX = C013h
  8851.     ???
  8852. Return: BX destroyed
  8853.     ???
  8854. Program: PCACHE is the resident print spooler portion of PrintCache by
  8855.       LaserTools; it may use either memory or disk space to spool output
  8856. Range:    AH=C0h to AH=FFh, selected by commandline switch
  8857. SeeAlso: AX=C000h"PCACHE"
  8858. --------c-2FC014-----------------------------
  8859. INT 2F U - PrintCache v3.1 PCACHE.EXE - ???
  8860.     AX = C014h
  8861.     ???
  8862. Return: BX destroyed
  8863.     ???
  8864. SeeAlso: AX=C000h"PCACHE"
  8865. --------c-2FC015-----------------------------
  8866. INT 2F U - PrintCache v3.1 PCACHE.EXE - ???
  8867.     AX = C015h
  8868.     ???
  8869. Return: BX destroyed
  8870.     ???
  8871. SeeAlso: AX=C000h"PCACHE"
  8872. --------c-2FC016-----------------------------
  8873. INT 2F U - PrintCache v3.1 PCACHE.EXE - INCREMENT ???
  8874.     AX = C016h
  8875. Return: BX destroyed
  8876. SeeAlso: AX=C000h"PCACHE",AX=C017h"PCACHE"
  8877. --------c-2FC017-----------------------------
  8878. INT 2F U - PrintCache v3.1 PCACHE.EXE - DECREMENT ???
  8879.     AX = C017h
  8880. Return: BX destroyed
  8881. SeeAlso: AX=C000h"PCACHE",AX=C016h"PCACH"
  8882. --------c-2FC018-----------------------------
  8883. INT 2F U - PrintCache v3.1 PCACHE.EXE - ???
  8884.     AX = C018h
  8885.     ???
  8886. Return: BX destroyed
  8887.     ???
  8888. Note:    the first instruction of this function is an indirect jump which points
  8889.       at a RET by default
  8890. SeeAlso: AX=C000h"PCACHE",AX=C019h"PCACHE"
  8891. --------c-2FC019-----------------------------
  8892. INT 2F U - PrintCache v3.1 PCACHE.EXE - ???
  8893.     AX = C019h
  8894.     ???
  8895. Return: BX destroyed
  8896.     ???
  8897. Note:    the first instruction of this function is an indirect jump which points
  8898.       at a RET by default
  8899. SeeAlso: AX=C000h"PCACHE",AX=C018h"PCACHE"
  8900. --------c-2FC01A-----------------------------
  8901. INT 2F U - PrintCache v3.1 PCACHE.EXE - CLEAR ??? FLAG
  8902.     AX = C01Ah
  8903. Return: BX destroyed
  8904. SeeAlso: AX=C000h"PCACHE",AX=C01Bh"PCACHE"
  8905. --------c-2FC01B-----------------------------
  8906. INT 2F U - PrintCache v3.1 PCACHE.EXE - SET ??? FLAG
  8907.     AX = C01Bh
  8908. Return: BX destroyed
  8909. SeeAlso: AX=C000h"PCACHE",AX=C01Ah"PCACHE"
  8910. --------c-2FC01C-----------------------------
  8911. INT 2F U - PrintCache v3.1 PCACHE.EXE - ???
  8912.     AX = C01Ch
  8913.     ???
  8914. Return: AX = ???
  8915.     BX destroyed
  8916. SeeAlso: AX=C000h"PCACHE"
  8917. --------c-2FC01D-----------------------------
  8918. INT 2F U - PrintCache v3.1 PCACHE.EXE - NOP
  8919.     AX = C01Dh to C01Fh
  8920. Return: BX destroyed
  8921. Program: PCACHE is the resident print spooler portion of PrintCache by
  8922.       LaserTools; it may use either memory or disk space to spool output
  8923. Range:    AH=C0h to AH=FFh, selected by commandline switch
  8924. SeeAlso: AX=C000h"PCACHE"
  8925. --------V-2FC020-----------------------------
  8926. INT 2F - AD-DOS - GET AND RESET VxD API STATUS
  8927.     AX = C020h
  8928. Return: AL = 00h if successful
  8929.         BX = VxD API Status
  8930.         0000h no error
  8931.         0001h error
  8932.         0100h neither Windows 3.X enhanced mode nor Windows/386 2.x
  8933.               is running
  8934.         0200h VM API entry point not found (VxD not installed)
  8935. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  8936. Note:    this call resets the VxD API Status to zero
  8937. SeeAlso: AX=1602h,AX=1607h
  8938. Index:    screen saver;AD-DOS
  8939. --------V-2FC04E-----------------------------
  8940. INT 2F - Explosiv v2.00+ - NON-TSR EXECUTING CHECK
  8941.     AX = C04Eh
  8942. Return: AL = 4Fh if Explosiv is running but not memory-resident
  8943. Program: Explosiv is a shareware animated screen blanker for DOS and Windows 3
  8944.       by H&G Software (Reidar Gresseth and Chris Hook)
  8945. Range:    AH=C0h to AH=C9h, selected by configuration
  8946. SeeAlso: AX=C050h
  8947. Index:    screen saver;Explosiv
  8948. --------V-2FC050-----------------------------
  8949. INT 2F - Explosiv v2.00+ - INSTALLATION CHECK
  8950.     AX = C050h
  8951. Return: AL = 51h if installed
  8952.     ---v3.0+ ---
  8953.         BX = interval in clock ticks
  8954.         CH = animation display color (00h mono, 01h tinge, 02h color)
  8955.         CL = animation delay factor
  8956.         DH = animation parameters
  8957.         DL = INT 10 checking (00h on, 01h off)
  8958.         SI = number of bytes available for animation code
  8959.         DI = display type (00h VGA, 01h EGA, 02h CGA, 03h HGC, 04h MDA)
  8960. Program: Explosiv is a shareware animated screen blanker for DOS and Windows 3
  8961.       by H&G Software (Reidar Gresseth and Chris Hook)
  8962. Range:    AH=C0h to AH=C9h, selected by configuration
  8963. SeeAlso: AH=93h,AX=C000h"AD-DOS",AX=C04Eh,AX=C052h,AX=C054h"v3"
  8964. SeeAlso: INT 14/AX=AA01h
  8965. Index:    screen saver;Explosiv
  8966. --------V-2FC052-----------------------------
  8967. INT 2F - Explosiv v2.00+ - UNINSTALL
  8968.     AX = C052h
  8969.     DX:BX = address to return to on successful uninstall
  8970. Return: at specified address if successful
  8971.     AL = 53h on error
  8972. Note:    specified return address must have the segment of the caller's PSP
  8973. SeeAlso: AX=C050h
  8974. Index:    screen saver;Explosiv
  8975. --------V-2FC054-----------------------------
  8976. INT 2F - Explosiv v2.x - GET ANIMATION DELAY FACTOR
  8977.     AX = C054h
  8978. Return: AL = delay factor
  8979. SeeAlso: AX=C057h
  8980. Index:    screen saver;Explosiv
  8981. --------V-2FC054-----------------------------
  8982. INT 2F - Explosiv v3.0+ - UPDATE PARAMETERS
  8983.     AX = C054h
  8984.     BX = new interval in clock ticks
  8985.     CH = animation display color (00h mono, 01h tinge, 02h color)
  8986.     CL = animation delay factor
  8987.     DH = animation parameters
  8988.     DL = INT 10 checking (00h on, 01h off)
  8989. SeeAlso: AX=C050h
  8990. Index:    screen saver;Explosiv
  8991. --------V-2FC055-----------------------------
  8992. INT 2F - Explosiv v2.x - SET BLANKING INTERVAL
  8993.     AX = C055h
  8994.     BX = new interval in clock ticks
  8995. Index:    screen saver;Explosiv
  8996. --------V-2FC056-----------------------------
  8997. INT 2F - Explosiv v2.x - SET ANIMATION DISPLAY TYPE
  8998.     AX = C056h
  8999.     BL = animated display type (00h mono, 01h color)
  9000. SeeAlso: AX=C058h"v2.x"
  9001. Index:    screen saver;Explosiv
  9002. --------V-2FC056-----------------------------
  9003. INT 2F - Explosiv v3.0+ - ENABLE/DISABLE EXPLOSIV
  9004.     AX = C056h
  9005.     BX = new state
  9006.         0000h disabled
  9007.         0100h enabled
  9008.         0101h enabled, but never blank
  9009.         0102h enabled, always blank
  9010. --------V-2FC057-----------------------------
  9011. INT 2F - Explosiv v2.x - SET ANIMATION DELAY FACTOR
  9012.     AX = C057h
  9013.     BL = delay factor
  9014. SeeAlso: AX=C054h"v2.x"
  9015. Index:    screen saver;Explosiv
  9016. --------V-2FC058-----------------------------
  9017. INT 2F - Explosiv v2.x - SET ANIMATION PARAMETER
  9018.     AX = C058h
  9019.     BL = animation parameter
  9020. Note:    the animation parameter has different interpretations for each display
  9021. SeeAlso: AX=C056h"v2.x"
  9022. Index:    screen saver;Explosiv
  9023. --------V-2FC058-----------------------------
  9024. INT 2F - Explosiv v3.0+ - LOAD NEW ANIMATION DISPLAY CODE
  9025.     AX = C058h
  9026.     BX = file handle for file containing display code
  9027.     CX = number of bytes to load
  9028.     DX = offset at which animation code should be loaded
  9029. Return: AL = status (see #2199)
  9030. Note:    if AL=00h-03h on return, the file will be closed
  9031. Index:    screen saver;Explosiv
  9032.  
  9033. (Table 2199)
  9034. Values for Explosiv function status:
  9035.  00h    successful
  9036.  01h    code too large to available space
  9037.  02h    no data read, load aborted
  9038.  03h    incomplete load, default blanking display loaded instead
  9039.  58h    unexpected offset in DX
  9040. --------V-2FC059-----------------------------
  9041. INT 2F - Explosiv v2.x - DISABLE EXPLOSIV
  9042.     AX = C059h
  9043. Note:    clears flag set by AX=C05Ah
  9044. SeeAlso: AX=C05Ah
  9045. Index:    screen saver;Explosiv
  9046. --------V-2FC05A-----------------------------
  9047. INT 2F u - Explosiv v2.x - ENABLE EXPLOSIV
  9048.     AX = C05Ah
  9049.     BL = ???
  9050. Note:    sets flag cleared by AX=C059h then stores BL
  9051. SeeAlso: AX=C059h,AX=C05Bh
  9052. Index:    screen saver;Explosiv
  9053. --------V-2FC05B-----------------------------
  9054. INT 2F - Explosiv v2.x - CHANGE ANIMATION DISPLAY
  9055.     AX = C05Bh
  9056.     BL = animation display
  9057. Note:    this function fails silently if the requested display is not in memory
  9058. SeeAlso: AX=C05Ah,AX=C05Ch
  9059. Index:    screen saver;Explosiv
  9060. --------V-2FC05C-----------------------------
  9061. INT 2F - Explosiv v2.x - SET INT 10 CHECKING
  9062.     AX = C05Ch
  9063.     BL = new state of INT 10 checking (00h enabled, 01h disabled)
  9064. SeeAlso: AX=C05Bh
  9065. Index:    screen saver;Explosiv
  9066. --------v-2FC080-----------------------------
  9067. INT 2F U - AMI IAM.SYS - INSTALL ??? CALLBACK
  9068.     AX = C080h
  9069.     CX:DX -> ??? callback
  9070.     DI = segment of ??? buffer (first WORD copied into IAM.SYS)
  9071. Program: IAM.SYS is the Illegal Activity Monitor portion of American
  9072.       Megatrends, Inc.'s PC-Defender anti-virus product
  9073. Note:    also sets ??? flag
  9074. SeeAlso: AX=C081h
  9075.  
  9076. Format of IAM.SYS buffer:
  9077. Offset    Size    Description    (Table 2200)
  9078.  00h    BYTE    ???
  9079.  01h    BYTE    ???
  9080.  02h  N BYTEs    ??? (ASCIZ strings)
  9081. --------v-2FC081-----------------------------
  9082. INT 2F U - AMI IAM.SYS - CLEAR ???
  9083.     AX = C081h
  9084. Desc:    clears the ??? flag that AX=C080h sets
  9085. SeeAlso: AX=C080h
  9086. --------K-2FC0AE-----------------------------
  9087. INT 2F U - HP 100LX/200LX - PUSHKEYS - INSTALLATION CHECK
  9088.     AX = C0AEh
  9089. Return: AX = 4453h if installed
  9090.     CX = 5259h if installed
  9091. Range:    AH=C0h to AH=FFh, selected by scanning for signature
  9092. SeeAlso: AX=C000h"HP 100LX",AX=C001h"HP 100LX",AX=C0AFh"HP 100LX"
  9093. --------K-2FC0AF-----------------------------
  9094. INT 2F U - HP 100LX/200LX - PUSHKEYS - INTERNAL - GET BUFFER ADDRESS
  9095.     AX = C0AFh
  9096. Return: ES:DI -> buffer (behind code)
  9097. Range:    AH=C0h to AH=FFh, selected by scanning for signature with AL=AEh
  9098. SeeAlso: AX=C000h"HP 100LX",AX=C001h"HP 100LX",AX=C0AEh"HP 100LX"
  9099. --------N-2FC100-----------------------------
  9100. INT 2F U - Personal NetWare - STPIPX v1.00 - INSTALLATION CHECK
  9101.     AX = C100h
  9102. Return: AL = FFh if installed
  9103.         ES:SI -> signature string "STP-IPX$"
  9104.         BX = version??? (0001h for v1.00)
  9105.         DI corrupted
  9106. Note:    AH=C1h is the default value; STPIPX probably scans a range of
  9107.       multiplex numbers to find a free one, as LSL does
  9108. SeeAlso: AX=C000h"LSL",AX=C101h
  9109. --------N-2FC101-----------------------------
  9110. INT 2F U - Personal NetWare - STPIPX v1.00 - UNINSTALL
  9111.     AX = C101h
  9112. Return: AL = status???
  9113.     BX corrupted
  9114. SeeAlso: AX=C101h
  9115. --------N-2FC205-----------------------------
  9116. INT 2F U - LapLink RemoteAccess (LLRA) - Redirector - ???
  9117.     AX = C205h
  9118.     details not yet available
  9119. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  9120. SeeAlso: AX=C000h"LapLink",AX=C002h"LapLink",AX=C2F0h"LapLink"
  9121. SeeAlso: AX=C2F1h"LapLink",AX=C301h"LapLink"
  9122. --------N-2FC2F0-----------------------------
  9123. INT 2F U - LapLink RemoteAccess (LLRA) - Redirector - ???
  9124.     AX = C2F0h
  9125.     details not yet available
  9126. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  9127. SeeAlso: AX=C000h"LapLink",AX=C002h"LapLink",AX=C205h"LapLink"
  9128. SeeAlso: AX=C2F1h"LapLink",AX=C301h"LapLink"
  9129. --------N-2FC2F1-----------------------------
  9130. INT 2F U - LapLink RemoteAccess (LLRA) - Redirector - ???
  9131.     AX = C2F1h
  9132.     details not yet available
  9133. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  9134. SeeAlso: AX=C000h"LapLink",AX=C002h"LapLink",AX=C205h"LapLink"
  9135. SeeAlso: AX=C2F0h"LapLink",AX=C301h"LapLink"
  9136. --------d-2FC300-----------------------------
  9137. INT 2F - SETWPR.COM - INSTALLATION CHECK
  9138.     AX = C300h
  9139. Return: AL = FFh if installed
  9140. Program: SETWPR is a hard-disk write-protection TSR by Jaroslaw Rafa
  9141. SeeAlso: AX=C302h"SETWPR"
  9142. --------k-2FC300DX0000-----------------------
  9143. INT 2F U - SpaceManager - INSTALLATION CHECK
  9144.     AX = C300h
  9145.     DX = 0000h
  9146. Return: AL = FFh if any SpaceManager programs installed
  9147.         BX = 6F73h
  9148.         CX = 6F68h
  9149. Program: SpaceManager is an enhancement for MS-DOS DoubleSpace by Vertisoft
  9150.       Systems, Inc.
  9151. Range:    AH=C3h to AH=FFh, selected by scanning for first free multiplex number
  9152. SeeAlso: AX=C300h/DX=0666h
  9153. --------k-2FC300-----------------------------
  9154. INT 2F U - SpaceManager - INSTALLATION VERIFICATION
  9155.     AX = C300h
  9156.     DX = program identifier (see #2201) or 0666h for any SpaceManager prog
  9157.     BX = 4F53h ('OS')
  9158.     CX = 4F48h ('OH')
  9159. Return: AL = FFh if BX/CX as specified and specified program installed
  9160.         BX = 6F73h ('os')
  9161.         CX = 6F68h ('oh')
  9162. Range:    AH=C3h to AH=FFh, selected by scanning for first free multiplex number
  9163. Note:    this call is chained if BX,CX, or DX are not as specified above
  9164. SeeAlso: AX=C300h/DX=0000h
  9165.  
  9166. (Table 2201)
  9167. Values for SpaceManager program identifier:
  9168.  9000h    SMOUNT (SuperMount)
  9169.  9001h    SELECTC (SelectCompress)
  9170.  9002h    SUPERX (SuperExchange)
  9171.  9003h    FORTUNE (FortuneTeller)
  9172. --------k-2FC301-----------------------------
  9173. INT 2F U - SpaceManager - ???
  9174.     AX = C301h
  9175.     DX = program identifier (9000h,9001h,9003h) (see #2201)
  9176.     ???
  9177. Return: ???
  9178. --------N-2FC301-----------------------------
  9179. INT 2F U - LapLink RemoteAccess (LLRA) - Compression - ???
  9180.     AX = C301h
  9181.     details not yet available
  9182. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  9183. SeeAlso: AX=C000h"LapLink",AX=C002h"LapLink",AX=C205h"LapLink"
  9184. SeeAlso: AX=C2F0h"LapLink",AX=C3F0h"LapLink",AX=C3F1h"LapLink"
  9185. --------k-2FC302-----------------------------
  9186. INT 2F U - SpaceManager - ENABLE PROGRAM
  9187.     AX = C302h
  9188.     DX = program identifier (9000h,9001h,9003h) (see #2201)
  9189. Return: AX destroyed
  9190. SeeAlso: AX=C303h,AX=C306h
  9191. --------d-2FC302-----------------------------
  9192. INT 2F - SETWPR.COM - SET WRITE-PROTECTION STATE
  9193.     AX = C302h
  9194.     BL = new state
  9195.         00h disk may be written
  9196.         01h disk write-protected
  9197. Return: AL = FFh if installed
  9198. Program: SETWPR is a hard-disk write-protection TSR by Jaroslaw Rafa
  9199. SeeAlso: AX=C300h"SETWPR"
  9200. --------k-2FC303-----------------------------
  9201. INT 2F U - SpaceManager - DISABLE PROGRAM
  9202.     AX = C303h
  9203.     DX = program identifier (9000h,9001h,9003h) (see #2201)
  9204. Return: AX destroyed
  9205. SeeAlso: AX=C302h,AX=C306h
  9206. --------k-2FC304-----------------------------
  9207. INT 2F U - SpaceManager - GET PER-DRIVE ENABLEMENT TABLE
  9208.     AX = C304h
  9209.     DX = program identifier (9000h,9001h,9003h) (see #2201)
  9210. Return: ES:BX -> 26-byte drive table (00h disabled for drive, 01h enabled)
  9211.     AX destroyed
  9212. --------k-2FC305DX9003-----------------------
  9213. INT 2F U - SpaceManager - FORTUNE.EXE - NOP
  9214.     AX = C305h
  9215.     DX = 9003h
  9216. Return: AX destroyed
  9217. --------k-2FC305-----------------------------
  9218. INT 2F U - SpaceManager - ???
  9219.     AX = C305h
  9220.     DX = program identifier (9000h,9001h) (see #2201)
  9221.     ???
  9222. Return: ???
  9223. --------k-2FC306-----------------------------
  9224. INT 2F U - SpaceManager - CHECK WHETHER PROGRAM ENABLED
  9225.     AX = C306h
  9226.     DX = program identifier (9000h,9001h,9003h) (see #2201)
  9227. Return: AL = current state (00h disabled, FAh enabled)
  9228.     AH destroyed
  9229. SeeAlso: AX=C302h,AX=C303h
  9230. --------k-2FC307DX9001-----------------------
  9231. INT 2F U - SpaceManager - SELECTC - ???
  9232.     AX = C307h
  9233.     DX = 9001h
  9234.     BX = ???
  9235.     CX = ???
  9236.     ???
  9237. Return: ???
  9238. --------k-2FC308DX9001-----------------------
  9239. INT 2F U - SpaceManager - SELECTC - ???
  9240.     AX = C308h
  9241.     DX = 9001h
  9242.     ???
  9243. Return: ???
  9244. --------N-2FC3F0-----------------------------
  9245. INT 2F U - LapLink RemoteAccess (LLRA) - Compression - ???
  9246.     AX = C3F0h
  9247.     details not yet available
  9248. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  9249. SeeAlso: AX=C000h"LapLink",AX=C002h"LapLink",AX=C205h"LapLink"
  9250. SeeAlso: AX=C2F0h"LapLink",AX=C301h"LapLink",AX=C3F1h"LapLink"
  9251. --------N-2FC3F1-----------------------------
  9252. INT 2F U - LapLink RemoteAccess (LLRA) - Compression - ???
  9253.     AX = C3F1h
  9254.     details not yet available
  9255. Range:    AH=C0h to AH=FFh, selected by scanning for first free multiplex number
  9256. SeeAlso: AX=C000h"LapLink",AX=C002h"LapLink",AX=C205h"LapLink"
  9257. SeeAlso: AX=C2F0h"LapLink",AX=C301h"LapLink",AX=C3F0h"LapLink"
  9258. --------d-2FC64CBX5553-----------------------
  9259. INT 2F U - Smart Prompt - INSTALLATION CHECK
  9260.     AX = C64Ch
  9261.     BX = 5553h
  9262. Return: AX = 4CC6h if installed
  9263.     BX = 5355h if installed
  9264. Program: Smart Prompt (SMARTPMT) is a freeware TSR by Steve Gibson which forces
  9265.       an immediate flush of SmartDrive's (and compatible caches') buffers
  9266.       on returning to the DOS prompt
  9267. --------V-2FC700CX434C-----------------------
  9268. INT 2F u - COLAP - INSTALLATION CHECK
  9269.     AX = C700h
  9270.     CX = 434Ch  "CL"
  9271. Return: AL = FFh if installed
  9272. Program: colap.com is a freeware TSR by Eric Meyer which controls contrast
  9273.       and brightness of color laptops by changing the VGA palette colors;
  9274.       for Toshiba laptops there are more hotkeys for shutting off display
  9275.       and harddisk.
  9276. --------v-2FC900BP0000-----------------------
  9277. INT 2F U - ThunderByte??? - INSTALLATION CHECK
  9278.     AX = C900h
  9279.     BP = 0000h
  9280. Return: AL = FFh if installed
  9281.         BP >= 0014h
  9282. Note:    called by TBSCANX
  9283. SeeAlso: AX=C987h,AX=CA00h
  9284. --------v-2FC987-----------------------------
  9285. INT 2F U - ThunderByte??? - DISINFECT FILE???
  9286.     AX = C987h
  9287.     BX:DX -> filename
  9288.     BX:CX -> virus name
  9289. Return: AX = status
  9290.         0000h successful???
  9291. Note:    called by TBSCANX
  9292. SeeAlso: AX=CA00h
  9293. --------r-2FC9FF-----------------------------
  9294. INT 2F C - StackMan - INSTALLATION BROADCAST
  9295.     AX = C9FFh
  9296.     BL = BCD version number
  9297.     CX = number of stacks
  9298.     DX = stack size in bytes
  9299. Program: StackMan is a freeware stack manager by Franz Veldman of ESaSS B.V.
  9300.       which functions as a replacement for the DOS STACK= command as well
  9301.       as permitting multiple TSRs to share a pool of stack space
  9302. Notes:    called by StackMan when it goes resident to inform interested TSRs that
  9303.       its API is available
  9304.     the installation check consists of testing for the string "STACKXXX" at
  9305.       offset 0Ah from the INT B4 handler
  9306. SeeAlso: INT B4"StackMan",INT B5"StackMan"
  9307. Index:    installation check;STACKMAN|broadcasts;STACKMAN installation
  9308. --------F-2FCA-------------------------------
  9309. INT 2F - FAXPLUS - FAX TSR
  9310.     AH = CAh
  9311.     ???
  9312. Return: ???
  9313. Program: FAXTSR is a resident FAX send/receive module for FAXPLUS by Frans
  9314.       Veldman
  9315. SeeAlso: AH=2Ah"Gammafax"
  9316. --------v-2FCA00BX5442-----------------------
  9317. INT 2F - TBSCANX - INSTALLATION CHECK
  9318.     AX = CA00h
  9319.     BX = 5442h ('TB')
  9320. Return: AL = state
  9321.         00h not installed
  9322.         FFh installed
  9323.         BX = 7462h ('tb') if BX was 5442h on entry
  9324. Program: TBSCANX is a resident virus scanning module by Frans Veldman.
  9325. Note:    programs may perform virus checks on themselves, other program files,
  9326.       or their data files by invoking the TBSCANX API.
  9327. SeeAlso: AX=4653h,AX=C900h
  9328. --------v-2FCA01-----------------------------
  9329. INT 2F - TBSCANX - GET STATUS
  9330.     AX = CA01h
  9331. Return: AH = BCD version number (v2.2+)
  9332.         CAh for versions before 2.2
  9333.     AL = state (00h = disabled, 01h = enabled)
  9334.     CX = number of signatures which will be searched
  9335. ---v2.0---
  9336.     BX = EMS handle, 0000h if not using EMS
  9337. ---v2.3+---
  9338.     BX = segment of swap area, 0000h if not swapped
  9339.     DX = EMS or XMS handle (XMS handle if BX=0000h), FFFFh if not using EMS
  9340. SeeAlso: AX=CA02h
  9341. --------v-2FCA02-----------------------------
  9342. INT 2F - TBSCANX - SET STATE
  9343.     AX = CA02h
  9344.     BL = new state (00h = disabled, 01h = enabled)
  9345. SeeAlso: AX=CA01h
  9346. --------v-2FCA03-----------------------------
  9347. INT 2F - TBSCANX - SCAN BUFFER
  9348.     AX = CA03h
  9349.     CX = size of buffer
  9350.     DS:DX -> buffer containing data to scan
  9351. Return: CF clear if no virus signatures found
  9352.         BX,ES destroyed
  9353.     CF set if signature found
  9354.         ES:BX -> ASCIZ virus name (v2.3+)
  9355.         DS:DX -> ASCIZ virus name (v2.0)
  9356.     AX,CX,DX destroyed (v2.3+)
  9357.     all other registers except CS:IP and SS:SP destroyed (v2.0)
  9358. SeeAlso: AX=CA04h
  9359. --------v-2FCA04-----------------------------
  9360. INT 2F - TBSCANX - SCAN FILE
  9361.     AX = CA04h
  9362.     DS:DX -> filename
  9363. Return: CF clear if no virus signatures found
  9364.         BX,ES destroyed
  9365.     CF set if signature found
  9366.         ES:BX -> ASCIZ virus name
  9367.     AX,CX,DX destroyed
  9368. Note:    this function requires at least 4K free memory
  9369. SeeAlso: AX=CA03h
  9370. --------U-2FCAFEBX0000-----------------------
  9371. INT 2F U - THELP v3.0 - INSTALLATION CHECK
  9372.     AX = CAFEh
  9373.     BX = 0000h
  9374. Return: BX = segment of resident code if installed
  9375.         0000h if not installed
  9376. SeeAlso: AX=5453h,INT 2D"AMIS"
  9377. --------!---Section--------------------------
  9378.